From 8c045b7fcbf125f9aa554d8c2e67bbd974634737 Mon Sep 17 00:00:00 2001 From: Nathan Page Date: Sun, 25 Oct 2020 16:36:53 -0400 Subject: [PATCH] put throught the same force encoding-decoding conversion --- tests/test_live.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_live.py b/tests/test_live.py index c202fd00..c7527165 100644 --- a/tests/test_live.py +++ b/tests/test_live.py @@ -35,7 +35,9 @@ def check_output(output_file: str, output: str) -> None: correct_output = get_capture_text("live", output_file) - assert output == correct_output, "Console output differs from the correct output" + assert ( + output.encode("utf-8").decode("utf-8") == correct_output + ), "Console output differs from the correct output" def test_growing_table() -> None: