diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-03-14 15:23:15 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-03-14 15:23:15 +0800 |
commit | 3ca65199a3cfc0c0562783c924bef3c8621f52c8 (patch) | |
tree | b1a59ae0c92120eb73fb385bbece37ace6357ccd /cpp/demo/IceGrid/replication/expect.py | |
parent | Merge branch 'bug2785' (diff) | |
download | ice-3ca65199a3cfc0c0562783c924bef3c8621f52c8.tar.bz2 ice-3ca65199a3cfc0c0562783c924bef3c8621f52c8.tar.xz ice-3ca65199a3cfc0c0562783c924bef3c8621f52c8.zip |
Fix bug with IceGrid/replication expect.py script.
Diffstat (limited to 'cpp/demo/IceGrid/replication/expect.py')
-rwxr-xr-x | cpp/demo/IceGrid/replication/expect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IceGrid/replication/expect.py b/cpp/demo/IceGrid/replication/expect.py index af4a3a73c12..f36af8b8b8a 100755 --- a/cpp/demo/IceGrid/replication/expect.py +++ b/cpp/demo/IceGrid/replication/expect.py @@ -72,7 +72,7 @@ def runtest(): for i in range(1, 5): client.expect("Hello World!") client.sendline('x') - client.kill(signal.SIGINT) + client.sendline('x') client.waitTestSuccess(timeout=1) |