diff options
Diffstat (limited to 'tests/unit/models_containers_test.py')
-rw-r--r-- | tests/unit/models_containers_test.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/models_containers_test.py b/tests/unit/models_containers_test.py index 0fb69f3..70c8648 100644 --- a/tests/unit/models_containers_test.py +++ b/tests/unit/models_containers_test.py @@ -71,8 +71,7 @@ class ContainerCollectionTest(unittest.TestCase): memswap_limit=456, name='somename', network_disabled=False, - network_mode='blah', - networks=['foo'], + network='foo', oom_kill_disable=True, oom_score_adj=5, pid_mode='host', @@ -153,7 +152,7 @@ class ContainerCollectionTest(unittest.TestCase): 'MemoryReservation': 123, 'MemorySwap': 456, 'MemorySwappiness': 2, - 'NetworkMode': 'blah', + 'NetworkMode': 'foo', 'OomKillDisable': True, 'OomScoreAdj': 5, 'PidMode': 'host', |