diff options
| author | Robert Greig <rgreig@apache.org> | 2007-01-10 08:52:41 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-01-10 08:52:41 +0000 |
| commit | d989614d675abf5d970e0aff420fb3db79ace159 (patch) | |
| tree | a1e2388d652a4470af3f4ebfbcdd3848a2135faf /qpid/python/tests | |
| parent | 8dc53a78a3888e1fe23c6ff84d653c6e4e23e3e4 (diff) | |
| download | qpid-python-d989614d675abf5d970e0aff420fb3db79ace159.tar.gz | |
QPID-275 : (Patch supplied by Rob Godfrey) Fixes to allow broker to pass more of the Python tests
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@494769 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests')
| -rw-r--r-- | qpid/python/tests/exchange.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests/exchange.py b/qpid/python/tests/exchange.py index 121b47097d..56d6fa82e4 100644 --- a/qpid/python/tests/exchange.py +++ b/qpid/python/tests/exchange.py @@ -316,9 +316,9 @@ class MiscellaneousErrorsTests(TestBase): self.channel.exchange_declare(exchange="test_different_declared_type_exchange", type="direct") try: self.channel.exchange_declare(exchange="test_different_declared_type_exchange", type="topic") - self.fail("Expected 507 for redeclaration of exchange with different type.") + self.fail("Expected 530 for redeclaration of exchange with different type.") except Closed, e: - self.assertConnectionException(507, e.args[0]) + self.assertConnectionException(530, e.args[0]) #cleanup other = self.connect() c2 = other.channel(1) |
