summaryrefslogtreecommitdiff
path: root/test/rb
diff options
context:
space:
mode:
authorKevin Clark <kclark@apache.org>2008-06-18 01:14:17 +0000
committerKevin Clark <kclark@apache.org>2008-06-18 01:14:17 +0000
commit45671689eaddc7928f36103192851c766f8faaf5 (patch)
treec6aecbf220a7cd31f06e9196f7c5ccc5a6195b9c /test/rb
parentf98286a8e4bf02df06f8c821d2a36b6254b77bb5 (diff)
downloadthrift-45671689eaddc7928f36103192851c766f8faaf5.tar.gz
Fix odd bug in integration tests where it passed the wrong args to an Exception struct initializer
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668987 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/rb')
-rw-r--r--test/rb/integration/test_simple_handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rb/integration/test_simple_handler.rb b/test/rb/integration/test_simple_handler.rb
index fa52c0f80..230dd08b4 100644
--- a/test/rb/integration/test_simple_handler.rb
+++ b/test/rb/integration/test_simple_handler.rb
@@ -33,7 +33,7 @@ class TestHandler
end
def testException(thing)
- raise Thrift::Test::Xception, 'error'
+ raise Thrift::Test::Xception, :message => 'error'
end
end