diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-09 12:52:49 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-09 12:52:49 +0100 |
commit | f5fc8be1b959b75fa2a363ac035c2835224fd54e (patch) | |
tree | 225fb6c0f378455c56836ed152720f9222af74f5 /scripts/Util.py | |
parent | Fix Java build failures due to missing gradle property (diff) | |
download | ice-f5fc8be1b959b75fa2a363ac035c2835224fd54e.tar.bz2 ice-f5fc8be1b959b75fa2a363ac035c2835224fd54e.tar.xz ice-f5fc8be1b959b75fa2a363ac035c2835224fd54e.zip |
Additional fixes for ICE-7463, fixed test script bug
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 8ba68ad0036..2251db283bf 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1805,7 +1805,7 @@ class Driver: def waitReady(self, ready, readyCount, startTimeout): if ready: - self.expect("%s ready\n" % self.ready, timeout = startTimeout) + self.expect("%s ready\n" % ready, timeout = startTimeout) else: while readyCount > 0: self.expect("[^\n]+ ready\n", timeout = startTimeout) |