Additional fixes prompted by double-quote-string-fixer.

Signed-off-by: Brett Randall <javabrett@gmail.com>
This commit is contained in:
Brett Randall 2019-03-18 10:24:46 +11:00
parent f5af95cc9d
commit 7d7c9c0fde
No known key found for this signature in database
GPG key ID: 50EF8B0B7C04B29D
4 changed files with 19 additions and 19 deletions

View file

@ -40,7 +40,7 @@ def test_useless_exclude_for_hook(capsys, in_git_dir):
out = out.strip()
expected = (
"The exclude pattern 'foo' for check-useless-excludes "
"does not match any files"
'does not match any files'
)
assert expected == out
@ -69,7 +69,7 @@ def test_useless_exclude_with_types_filter(capsys, in_git_dir):
out = out.strip()
expected = (
"The exclude pattern '.pre-commit-config.yaml' for "
"check-useless-excludes does not match any files"
'check-useless-excludes does not match any files'
)
assert expected == out