mirror of https://github.com/Textualize/rich.git
put throught the same force encoding-decoding conversion
This commit is contained in:
parent
fa63fb8d77
commit
8c045b7fcb
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue