diff options
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/models_containers_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/models_containers_test.py b/tests/unit/models_containers_test.py index a479e83..95295a9 100644 --- a/tests/unit/models_containers_test.py +++ b/tests/unit/models_containers_test.py @@ -225,7 +225,7 @@ class ContainerCollectionTest(unittest.TestCase): container = client.containers.run('alpine', 'sleep 300', detach=True) assert container.id == FAKE_CONTAINER_ID - client.api.pull.assert_called_with('alpine', tag=None) + client.api.pull.assert_called_with('alpine', platform=None, tag=None) def test_run_with_error(self): client = make_fake_client() |