From 30d4f137a829a7bfd613363f3579f97337462024 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 1 Apr 2013 19:06:59 -0400 Subject: [PATCH] Curse you, Python 3! --- tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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([])),