diff options
| author | Ted Ross <tross@apache.org> | 2013-10-15 21:05:50 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2013-10-15 21:05:50 +0000 |
| commit | 5748a0eabf88cf96f62c9220accb46797d4dcf4d (patch) | |
| tree | 4dc00f613a0df0973ede1b54f1df5b199c51fbf8 /qpid/extras/dispatch/tests | |
| parent | 06eadbac0a814f1701fa8ccfc982c8e5f9b4eba7 (diff) | |
| download | qpid-python-5748a0eabf88cf96f62c9220accb46797d4dcf4d.tar.gz | |
QPID-5216
- Removed unneeded python router code
- Added propagation of subscribed global addresses
- Broke out address statistics to include to/from-container counts
- Trace no longer optional, broke down and added loop prevention
- Don't allow endpoint subscriptions to subscribe to local-class addresses
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1532528 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/extras/dispatch/tests')
| -rw-r--r-- | qpid/extras/dispatch/tests/system_tests_one_router.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/extras/dispatch/tests/system_tests_one_router.py b/qpid/extras/dispatch/tests/system_tests_one_router.py index 302030e463..1154b3ed37 100644 --- a/qpid/extras/dispatch/tests/system_tests_one_router.py +++ b/qpid/extras/dispatch/tests/system_tests_one_router.py @@ -370,7 +370,7 @@ class RouterTest(unittest.TestCase): da = rm.instructions self.assertEqual(da.__class__, dict) self.assertEqual(da['qdx.ingress'], '_topo/area/Qpid.Dispatch.Router.A/') - self.assertFalse('qdx.trace' in da) + self.assertEqual(da['qdx.trace'], ['_topo/area/Qpid.Dispatch.Router.A/']) ## ## Pre-existing ingress @@ -388,7 +388,7 @@ class RouterTest(unittest.TestCase): da = rm.instructions self.assertEqual(da.__class__, dict) self.assertEqual(da['qdx.ingress'], 'ingress-router') - self.assertFalse('qdx.trace' in da) + self.assertEqual(da['qdx.trace'], ['_topo/area/Qpid.Dispatch.Router.A/']) ## ## Invalid trace type |
