Author: kclark
Date: Tue Jun 17 18:14:17 2008
New Revision: 668987
URL: http://svn.apache.org/viewvc?rev=668987&view=rev
Log:
Fix odd bug in integration tests where it passed the wrong args to an Exception
struct initializer
Modified:
incubator/thrift/trunk/test/rb/integration/test_simple_handler.rb
Modified: incubator/thrift/trunk/test/rb/integration/test_simple_handler.rb
URL:
http://svn.apache.org/viewvc/incubator/thrift/trunk/test/rb/integration/test_simple_handler.rb?rev=668987&r1=668986&r2=668987&view=diff
==============================================================================
--- incubator/thrift/trunk/test/rb/integration/test_simple_handler.rb (original)
+++ incubator/thrift/trunk/test/rb/integration/test_simple_handler.rb Tue Jun
17 18:14:17 2008
@@ -33,7 +33,7 @@
end
def testException(thing)
- raise Thrift::Test::Xception, 'error'
+ raise Thrift::Test::Xception, :message => 'error'
end
end