summaryrefslogtreecommitdiff
path: root/lib/custodian/protocol-tests/jabber.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-14 20:26:51 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-14 20:26:51 +0000
commit67ac15a68ab7dee8c0a880c44e8caaaf79b39310 (patch)
treeffe2cb3ef0d007a5abe6e611b41a25b8acaac772 /lib/custodian/protocol-tests/jabber.rb
parentacf0d8971eb1ce113b7c5f4ec5d26297cddcd657 (diff)
Ensure that our timeout period is an integer
Diffstat (limited to 'lib/custodian/protocol-tests/jabber.rb')
-rwxr-xr-xlib/custodian/protocol-tests/jabber.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocol-tests/jabber.rb b/lib/custodian/protocol-tests/jabber.rb
index 489b82a..7a0c855 100755
--- a/lib/custodian/protocol-tests/jabber.rb
+++ b/lib/custodian/protocol-tests/jabber.rb
@@ -75,7 +75,7 @@ class JABBERTest
puts "Jabber testing host #{host}:#{port}" if ( @test_data['verbose'] )
begin
- timeout(@test_data["timeout"]) do
+ timeout(@test_data["timeout"].to_i) do
begin
socket = TCPSocket.new( host, port )