summaryrefslogtreecommitdiff
path: root/ruby
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2020-12-16 16:41:07 +0100
committerJose <jose@zeroc.com>2020-12-16 16:41:40 +0100
commitdb825e38645a3ceacb10287cec5776bb38bd1bf0 (patch)
treeeba5e6a0f04f2c90978694f6c876552e4258046e /ruby
parentFxcop warnings (#1201) (diff)
downloadice-db825e38645a3ceacb10287cec5776bb38bd1bf0.tar.bz2
ice-db825e38645a3ceacb10287cec5776bb38bd1bf0.tar.xz
ice-db825e38645a3ceacb10287cec5776bb38bd1bf0.zip
Fix bogus call to holdAdapter in ruby timeout test
Diffstat (limited to 'ruby')
-rw-r--r--ruby/test/Ice/timeout/AllTests.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/test/Ice/timeout/AllTests.rb b/ruby/test/Ice/timeout/AllTests.rb
index 2bc05c46c2f..a855be49168 100644
--- a/ruby/test/Ice/timeout/AllTests.rb
+++ b/ruby/test/Ice/timeout/AllTests.rb
@@ -25,7 +25,7 @@ def allTests(helper, communicator)
rescue
# Ensure the adapter is not in the holding state when an unexpected exception occurs to prevent
# the test from hanging on exit in case a connection which disables timeouts is still opened.
- controller.holdAdapter()
+ controller.resumeAdapter()
raise
end
end