summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kombu/tests/transport/test_redis.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/kombu/tests/transport/test_redis.py b/kombu/tests/transport/test_redis.py
index 7902c76e..078db8eb 100644
--- a/kombu/tests/transport/test_redis.py
+++ b/kombu/tests/transport/test_redis.py
@@ -524,14 +524,14 @@ class test_Redis(TestCase):
channel.close()
def test_db_values(self):
- c1 = Connection(virtual_host=1,
- transport=Transport).channel()
+ Connection(virtual_host=1,
+ transport=Transport).channel()
- c2 = Connection(virtual_host='1',
- transport=Transport).channel()
+ Connection(virtual_host='1',
+ transport=Transport).channel()
- c3 = Connection(virtual_host='/1',
- transport=Transport).channel()
+ Connection(virtual_host='/1',
+ transport=Transport).channel()
with self.assertRaises(Exception):
Connection(virtual_host='/foo',