mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Additional fixes prompted by double-quote-string-fixer.
Signed-off-by: Brett Randall <javabrett@gmail.com>
This commit is contained in:
parent
f5af95cc9d
commit
7d7c9c0fde
4 changed files with 19 additions and 19 deletions
|
|
@ -528,7 +528,7 @@ def test_local_golang_additional_dependencies(store):
|
|||
}
|
||||
ret = _get_hook(config, store, 'hello').run(())
|
||||
assert ret[0] == 0
|
||||
assert _norm_out(ret[1]) == b"Hello, Go examples!\n"
|
||||
assert _norm_out(ret[1]) == b'Hello, Go examples!\n'
|
||||
|
||||
|
||||
def test_local_rust_additional_dependencies(store):
|
||||
|
|
@ -544,7 +544,7 @@ def test_local_rust_additional_dependencies(store):
|
|||
}
|
||||
ret = _get_hook(config, store, 'hello').run(())
|
||||
assert ret[0] == 0
|
||||
assert _norm_out(ret[1]) == b"Hello World!\n"
|
||||
assert _norm_out(ret[1]) == b'Hello World!\n'
|
||||
|
||||
|
||||
def test_fail_hooks(store):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue