diff --git a/tests/test_utils.py b/tests/test_utils.py index 8afad7a..c088530 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -42,7 +42,7 @@ class TestUtils(TreeEqualityTestCase): (Template(wrap([Text("spam")])), wrap([Template(textify(["spam"]))])), ("fóóbar", textify(["fóóbar"])), - (b"foobár", textify(["foobár"])), + (b"foob\xc3\xa1r", textify(["foobár"])), (123, textify(["123"])), (True, textify(["True"])), (None, wrap([])),