From f404eb57355cf7261041d02e0db1e70c10cb2232 Mon Sep 17 00:00:00 2001 From: Emilio Graff <1@emil.io> Date: Fri, 28 Jul 2023 12:55:50 -0700 Subject: [PATCH] Fix test --- tests/util_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/util_test.py b/tests/util_test.py index 70810498..1f8dd5b4 100644 --- a/tests/util_test.py +++ b/tests/util_test.py @@ -113,6 +113,6 @@ def test_rmtree_read_only_directories(tmpdir): def test_cmd_output_utf8(fn): """Makes sure `cmd_output_*` works if the command being run outputs UTF8 characters.""" - ret, out, _ = fn(f'{sys.executable}', '-c', 'print("❤")') + ret, out, _ = fn(f'{sys.executable}', '-c', 'print("❤")', check=False) assert ret == 0 assert out.strip().decode() == '❤'