We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5800c4a commit 9999cb0Copy full SHA for 9999cb0
tests/test.py
@@ -1319,7 +1319,9 @@ def test_push_image_with_tag(self):
1319
try:
1320
with mock.patch('docker.auth.auth.resolve_authconfig',
1321
fake_resolve_authconfig):
1322
- self.client.push(fake_api.FAKE_IMAGE_NAME, tag=fake_api.FAKE_TAG_NAME)
+ self.client.push(
1323
+ fake_api.FAKE_IMAGE_NAME, tag=fake_api.FAKE_TAG_NAME
1324
+ )
1325
except Exception as e:
1326
self.fail('Command should not raise exception: {0}'.format(e))
1327
0 commit comments