From dc681920bc7a79c6f977e7bd6bf188876a0ecf82 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 6 Jan 2015 01:09:44 +1100 Subject: [PATCH] * Upd asciify test, fixing type error --- tests/test_asciify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_asciify.py b/tests/test_asciify.py index 12ca88b1b..4c8a555a6 100644 --- a/tests/test_asciify.py +++ b/tests/test_asciify.py @@ -14,5 +14,5 @@ def test_tilde(): def test_smart_quote(): string = u'“' assert asciied(string) == b'"' - string = b'”' + string = u'”' assert asciied(string) == b'"'