summaryrefslogtreecommitdiff
path: root/test/soap/helloworld/test_helloworld.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/soap/helloworld/test_helloworld.rb')
-rw-r--r--test/soap/helloworld/test_helloworld.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/soap/helloworld/test_helloworld.rb b/test/soap/helloworld/test_helloworld.rb
index 0aa552e4a8..3f12bf4a20 100644
--- a/test/soap/helloworld/test_helloworld.rb
+++ b/test/soap/helloworld/test_helloworld.rb
@@ -14,10 +14,11 @@ module HelloWorld
class TestHelloWorld < Test::Unit::TestCase
def setup
@server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 2000)
+ @server.level = Logger::Severity::UNKNOWN
@t = Thread.new {
@server.start
}
- while @server.server.status != :Running
+ while @server.server.nil? or @server.server.status != :Running
sleep 0.1
end
@client = SOAP::RPC::Driver.new('http://localhost:2000/', 'urn:hws')