summaryrefslogtreecommitdiff
path: root/tests/test.py
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2014-12-18 18:03:27 -0800
committerJoffrey F <joffrey@docker.com>2014-12-18 18:03:27 -0800
commit2218dbaa6772838020e2836ac5dd2fddd4f3f574 (patch)
tree2f4719e88a84b5b8d40cd4fc842a2063ba589134 /tests/test.py
parent53d61a77b6fe3fe4178334511f20c2a292d1ce04 (diff)
downloaddocker-py-0.7.0-release.tar.gz
Use create_host_config in start (unifying parameter processing)0.7.0-release
Diffstat (limited to 'tests/test.py')
-rw-r--r--tests/test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test.py b/tests/test.py
index 2a22b3c..bd56d64 100644
--- a/tests/test.py
+++ b/tests/test.py
@@ -733,7 +733,6 @@ class DockerClientTest(Cleanup, unittest.TestCase):
args = fake_request.call_args
self.assertEqual(args[0][0], url_prefix + 'containers/create')
data = json.loads(args[1]['data'])
- self.assertEqual(data['HostConfig']['PublishAllPorts'], False)
port_bindings = data['HostConfig']['PortBindings']
self.assertTrue('1111/tcp' in port_bindings)
self.assertTrue('2222/tcp' in port_bindings)