Fix bug where too many '/tcp' suffixes were added to port config
This commit is contained in:
parent
18525554ed
commit
ae67d55bf2
2 changed files with 1 additions and 3 deletions
|
|
@ -184,7 +184,7 @@ class ServiceTest(DockerClientTestCase):
|
|||
def test_start_container_creates_ports(self):
|
||||
service = self.create_service('web', ports=[8000])
|
||||
container = service.start_container().inspect()
|
||||
self.assertIn('8000/tcp', container['HostConfig']['PortBindings'])
|
||||
self.assertEqual(container['HostConfig']['PortBindings'].keys(), ['8000/tcp'])
|
||||
self.assertNotEqual(container['HostConfig']['PortBindings']['8000/tcp'][0]['HostPort'], '8000')
|
||||
|
||||
def test_start_container_creates_fixed_external_ports(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue