diff options
| author | Alan Conway <aconway@apache.org> | 2014-09-04 20:48:27 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2014-09-04 20:48:27 +0000 |
| commit | ec7ef1d67fd460152e31d04c6b96b11c76af3b39 (patch) | |
| tree | dfb0f777ae71abbe5b1ae3962ecfeba24906b209 /qpid/cpp/src | |
| parent | e11828fee8dbcda2b1b39077c89bbfe3b205943a (diff) | |
| download | qpid-python-ec7ef1d67fd460152e31d04c6b96b11c76af3b39.tar.gz | |
NO-JIRA: Fix qpid/cpp/src/tests/ha_tests.py to work on python 2.4.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1622560 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rwxr-xr-x | qpid/cpp/src/tests/ha_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ha_tests.py b/qpid/cpp/src/tests/ha_tests.py index 1567bfd177..482296e47f 100755 --- a/qpid/cpp/src/tests/ha_tests.py +++ b/qpid/cpp/src/tests/ha_tests.py @@ -1527,7 +1527,7 @@ class TransactionTests(HaBrokerTest): t = CommitThread() t.start() # Commit in progress t.join(timeout=0.01) - self.assertTrue(t.is_alive()) + self.assertTrue(t.isAlive()) cluster.bounce(0) os.kill(cluster[2].pid, signal.SIGCONT) t.join() |
