Repository: qpid-dispatch Updated Branches: refs/heads/master 704003cc3 -> fb439e99e
NO-JIRA - Removed assertion text in the link-route test. These messages obscured the details of the assertion failure. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/fb439e99 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/fb439e99 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/fb439e99 Branch: refs/heads/master Commit: fb439e99e2ed93df69ef173d40c58126866834ea Parents: 8fa9635 Author: Ted Ross <[email protected]> Authored: Tue May 3 22:04:48 2016 -0400 Committer: Ted Ross <[email protected]> Committed: Tue May 3 22:05:48 2016 -0400 ---------------------------------------------------------------------- tests/system_tests_link_routes.py | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/fb439e99/tests/system_tests_link_routes.py ---------------------------------------------------------------------- diff --git a/tests/system_tests_link_routes.py b/tests/system_tests_link_routes.py index 6f49c12..5292fb2 100644 --- a/tests/system_tests_link_routes.py +++ b/tests/system_tests_link_routes.py @@ -217,11 +217,9 @@ class LinkRoutePatternTest(TestCase): attribute_names=['routerId']).results[0][0]) self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache.dev').deliveriesEgress, - "deliveriesEgress is wrong") + name='M0org.apache.dev').deliveriesEgress) self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache.dev').deliveriesIngress, - "deliveriesIngress is wrong") + name='M0org.apache.dev').deliveriesIngress) # There should be 4 links - # 1. outbound receiver link on org.apache.dev @@ -263,12 +261,10 @@ class LinkRoutePatternTest(TestCase): # Make sure that the router node acting as the broker (QDR.A) had one message routed through it. This confirms # that the message was link routed self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache.dev').deliveriesEgress, - "deliveriesEgress is wrong") + name='M0org.apache.dev').deliveriesEgress) self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache.dev').deliveriesIngress, - "deliveriesIngress is wrong") + name='M0org.apache.dev').deliveriesIngress) blocking_connection.close() @@ -306,12 +302,10 @@ class LinkRoutePatternTest(TestCase): # Make sure that the router node acting as the broker (QDR.A) had one message routed through it. This confirms # that the message was link routed self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache').deliveriesEgress, - "deliveriesEgress is wrong") + name='M0org.apache').deliveriesEgress) self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache').deliveriesIngress, - "deliveriesIngress is wrong") + name='M0org.apache').deliveriesIngress) blocking_connection.close() @@ -346,12 +340,10 @@ class LinkRoutePatternTest(TestCase): # Make sure that the router node acting as the broker (QDR.A) had one message routed through it. This confirms # that the message was link routed self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache').deliveriesEgress, - "deliveriesEgress is wrong") + name='M0org.apache').deliveriesEgress) self.assertEqual(1, local_node.read(type='org.apache.qpid.dispatch.router.address', - name='M0org.apache').deliveriesIngress, - "deliveriesIngress is wrong") + name='M0org.apache').deliveriesIngress) blocking_connection.close() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
