diff options
author | Anca Iordache <aiordache@users.noreply.github.com> | 2020-08-10 18:35:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 18:35:10 +0200 |
commit | 30089ec681d9016154c722717e974bec9116ef47 (patch) | |
tree | 2c153d89c1977f8791d8114db7d171b328fc9330 /tests/unit/api_network_test.py | |
parent | 7f11cd417956c51e9df27fd640fff25d99085322 (diff) | |
parent | 7db995b1ce94d8ec012793037acb789c17f95779 (diff) | |
download | docker-py-release.tar.gz |
4.3.0 release
Diffstat (limited to 'tests/unit/api_network_test.py')
-rw-r--r-- | tests/unit/api_network_test.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/api_network_test.py b/tests/unit/api_network_test.py index c78554d..758f013 100644 --- a/tests/unit/api_network_test.py +++ b/tests/unit/api_network_test.py @@ -136,7 +136,8 @@ class NetworkTest(BaseAPIClientTest): container={'Id': container_id}, net_id=network_id, aliases=['foo', 'bar'], - links=[('baz', 'quux')] + links=[('baz', 'quux')], + driver_opt={'com.docker-py.setting': 'yes'}, ) assert post.call_args[0][0] == ( @@ -148,6 +149,7 @@ class NetworkTest(BaseAPIClientTest): 'EndpointConfig': { 'Aliases': ['foo', 'bar'], 'Links': ['baz:quux'], + 'DriverOpts': {'com.docker-py.setting': 'yes'}, }, } |