summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Nephin <dnephin@gmail.com>2016-03-21 11:52:57 -0400
committerDaniel Nephin <dnephin@gmail.com>2016-03-21 11:52:57 -0400
commit5c1c42397cf0fdb74182df2d69822b82df8f2a6a (patch)
treee51125423da0b6e999e898d3fe9b23c466f5dc33
parent81edb398ebf7ce5c7ef14aa0739de5329589aabe (diff)
parent6fa76e01a4ae9f7bd9ed5cd9c4157efcf2791865 (diff)
downloaddocker-py-5c1c42397cf0fdb74182df2d69822b82df8f2a6a.tar.gz
Merge pull request #997 from wenchma/21080-net_link
Remove the network mode to support linkable cantainers check
-rw-r--r--tests/integration/api_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/api_test.py b/tests/integration/api_test.py
index e120c84..67ed068 100644
--- a/tests/integration/api_test.py
+++ b/tests/integration/api_test.py
@@ -49,7 +49,7 @@ class LinkTest(helpers.BaseTestCase):
container2 = self.client.create_container(
helpers.BUSYBOX, 'cat', host_config=self.client.create_host_config(
- links={link_path: link_alias}, network_mode='none'
+ links={link_path: link_alias}
)
)
container2_id = container2['Id']