summaryrefslogtreecommitdiff
path: root/kombu/tests/test_pools.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/tests/test_pools.py')
-rw-r--r--kombu/tests/test_pools.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kombu/tests/test_pools.py b/kombu/tests/test_pools.py
index 89a6bd20..920c65a7 100644
--- a/kombu/tests/test_pools.py
+++ b/kombu/tests/test_pools.py
@@ -220,6 +220,9 @@ class test_fun_PoolGroup(Case):
assert eqhash(c1) != eqhash(c2)
assert eqhash(c1) == eqhash(c3)
+ c4 = Connection(c1u, transport_options={'confirm_publish': True})
+ self.assertNotEqual(eqhash(c3), eqhash(c4))
+
p1 = pools.connections[c1]
p2 = pools.connections[c2]
p3 = pools.connections[c3]