mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Fix string literal type for Python 3
This commit is contained in:
parent
e774c09fac
commit
7259135d19
1 changed files with 1 additions and 1 deletions
|
|
@ -756,4 +756,4 @@ def test_pass_filenames(
|
||||||
cap_out, repo_with_passing_hook, _get_opts(verbose=True),
|
cap_out, repo_with_passing_hook, _get_opts(verbose=True),
|
||||||
)
|
)
|
||||||
assert expected_out + b'\nHello World' in printed
|
assert expected_out + b'\nHello World' in printed
|
||||||
assert ('foo.py' in printed) == pass_filenames
|
assert (b'foo.py' in printed) == pass_filenames
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue