You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2019/11/25 21:15:03 UTC

[qpid-dispatch] branch master updated: DISPATCH-1483: fix type error in system test

This is an automated email from the ASF dual-hosted git repository.

kgiusti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new 04a7d0a  DISPATCH-1483: fix type error in system test
04a7d0a is described below

commit 04a7d0a2c8c494255168628e04f13460eca372b3
Author: Kenneth Giusti <kg...@apache.org>
AuthorDate: Mon Nov 25 16:14:44 2019 -0500

    DISPATCH-1483: fix type error in system test
---
 tests/system_tests_delivery_counts.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/system_tests_delivery_counts.py b/tests/system_tests_delivery_counts.py
index 8dddc8d..00addb8 100644
--- a/tests/system_tests_delivery_counts.py
+++ b/tests/system_tests_delivery_counts.py
@@ -667,7 +667,7 @@ class OneRouterLinkCountersTest(TestCase):
         Verify the presettled dropped count link counter by exhausting credit
         before sending is complete
         """
-        limit = self.CREDIT/2  # 1/2 the capacity given the sender
+        limit = self.CREDIT//2  # 1/2 the capacity given the sender
         test = self.LinkCountersTest(self.router.addresses[0],
                                      presettled=True,
                                      count=self.COUNT,


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org