Merge "Add a test for rabbit URLs lacking terminating '/'"

This commit is contained in:
Zuul 2018-11-19 21:55:24 +00:00 committed by Gerrit Code Review
commit 274b7c3eb4
1 changed files with 3 additions and 0 deletions

View File

@ -400,6 +400,9 @@ class TestRabbitTransportURL(test_utils.BaseTestCase):
('rabbit_ipv4',
dict(url='rabbit://user:password@10.20.30.40:10/vhost',
expected=['amqp://user:password@10.20.30.40:10/vhost'])),
('rabbit_no_vhost_slash',
dict(url='rabbit://user:password@10.20.30.40:10',
expected=['amqp://user:password@10.20.30.40:10/'])),
]
def setUp(self):