From 79827ac7efb9ddff8226109a1b35680d4063e089 Mon Sep 17 00:00:00 2001 From: agnewee Date: Tue, 5 Dec 2017 00:57:23 +0800 Subject: [PATCH] repaire test case error --- tests/test_string.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_string.py b/tests/test_string.py index 4fda139..6715995 100644 --- a/tests/test_string.py +++ b/tests/test_string.py @@ -14,7 +14,7 @@ def test_safeunicode(): assert safeunicode(1) == u'1' assert safeunicode('中文') == u'中文' - assert safeunicode(u'hell0') == u'hello' + assert safeunicode(u'hello') == u'hello' assert safeunicode(u'中文') == u'中文'