1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 14:48:49 +00:00

Fix typo in test case

This commit is contained in:
Inga Feick 2019-03-28 15:51:10 +01:00
parent b56bb308c9
commit a92ea17e77

View File

@ -5,8 +5,8 @@ from thefuck.types import Command
def test_match():
err_response = """
Sending build context to Docker daemon 118.8kB
Step 1/6 : FROM baz/baz:nightly
pull access denied for baz/baz, repository does not exist or may require 'docker login'
Step 1/6 : FROM foo/bar:nightly
pull access denied for foo/bar, repository does not exist or may require 'docker login'
"""
assert match(Command('docker build -t artifactory:9090/foo/bar:fdb7c6d .', err_response))
assert not match(Command('', ''))