summaryrefslogtreecommitdiff
path: root/kombu/tests/test_connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/tests/test_connection.py')
-rw-r--r--kombu/tests/test_connection.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/kombu/tests/test_connection.py b/kombu/tests/test_connection.py
index fdc78f02..0456bc27 100644
--- a/kombu/tests/test_connection.py
+++ b/kombu/tests/test_connection.py
@@ -17,7 +17,7 @@ class test_connection_utils(Case):
def setup(self):
self.url = 'amqp://user:pass@localhost:5672/my/vhost'
- self.nopass = 'amqp://user@localhost:5672/my/vhost'
+ self.nopass = 'amqp://user:**@localhost:5672/my/vhost'
self.expected = {
'transport': 'amqp',
'userid': 'user',
@@ -31,10 +31,6 @@ class test_connection_utils(Case):
result = parse_url(self.url)
self.assertDictEqual(result, self.expected)
- def test_parse_url_mongodb(self):
- result = parse_url('mongodb://example.com/')
- self.assertEqual(result['hostname'], 'example.com/')
-
def test_parse_generated_as_uri(self):
conn = Connection(self.url)
info = conn.info()