put throught the same force encoding-decoding conversion

This commit is contained in:
Nathan Page 2020-10-25 16:36:53 -04:00
parent fa63fb8d77
commit 8c045b7fcb
1 changed files with 3 additions and 1 deletions

View File

@ -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: