diff options
Diffstat (limited to 'demoscript/Ice/hello.py')
-rw-r--r-- | demoscript/Ice/hello.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/demoscript/Ice/hello.py b/demoscript/Ice/hello.py index f4cb5770b5b..9f562a93c2b 100644 --- a/demoscript/Ice/hello.py +++ b/demoscript/Ice/hello.py @@ -58,9 +58,8 @@ def runtests(client, server, secure, datagram): client.sendline('P') client.expect('server delay is now set to 2500ms') client.sendline('t') - client.expect('.*TimeoutException.*', timeout=10) + client.expect('.*InvocationTimeoutException.*', timeout=10) server.expect('Hello World!') - server.expect('Hello World!') # second because op is idempotent client.sendline('P') client.expect('server delay is now deactivated') client.sendline('t') @@ -82,4 +81,4 @@ def run(client, server, sslSupport = True, datagramSupport = True): print("server shutdown"); client.sendline('x') client.waitTestSuccess() - print("client shutdown");
\ No newline at end of file + print("client shutdown"); |