mirror of https://github.com/docker/docker-py.git
pep8 fix
This commit is contained in:
parent
5800c4ab06
commit
9999cb0663
|
@ -1319,7 +1319,9 @@ class DockerClientTest(Cleanup, unittest.TestCase):
|
|||
try:
|
||||
with mock.patch('docker.auth.auth.resolve_authconfig',
|
||||
fake_resolve_authconfig):
|
||||
self.client.push(fake_api.FAKE_IMAGE_NAME, tag=fake_api.FAKE_TAG_NAME)
|
||||
self.client.push(
|
||||
fake_api.FAKE_IMAGE_NAME, tag=fake_api.FAKE_TAG_NAME
|
||||
)
|
||||
except Exception as e:
|
||||
self.fail('Command should not raise exception: {0}'.format(e))
|
||||
|
||||
|
|
Loading…
Reference in New Issue