Fix links related test

This commit is contained in:
Mark Steve Samson 2014-03-02 00:30:33 +08:00
parent c709251f21
commit e38e866626
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class ServiceTest(DockerClientTestCase):
def test_start_container_creates_links(self):
db = self.create_service('db')
web = self.create_service('web', links=[db])
web = self.create_service('web', links=[(db, None)])
db.start_container()
web.start_container()
self.assertIn('figtest_db_1', web.containers()[0].links())