From 7259135d19cd5fe7bb1d98dda99da1b5749c7460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berti=20Sassi?= Date: Sat, 13 May 2017 20:12:16 -0300 Subject: [PATCH] Fix string literal type for Python 3 --- tests/commands/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/run_test.py b/tests/commands/run_test.py index b0d677d0..d8522da4 100644 --- a/tests/commands/run_test.py +++ b/tests/commands/run_test.py @@ -756,4 +756,4 @@ def test_pass_filenames( cap_out, repo_with_passing_hook, _get_opts(verbose=True), ) assert expected_out + b'\nHello World' in printed - assert ('foo.py' in printed) == pass_filenames + assert (b'foo.py' in printed) == pass_filenames