From 573daa52d0c9357d231ad01cd399e9b88b8c3ef6 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 9 Sep 2010 12:36:30 +0200 Subject: [PATCH] Py2 test fix --- tests/run/future_unicode_literals.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/future_unicode_literals.pyx b/tests/run/future_unicode_literals.pyx index 4eb514e3..9d6b158a 100644 --- a/tests/run/future_unicode_literals.pyx +++ b/tests/run/future_unicode_literals.pyx @@ -16,7 +16,7 @@ else: True >>> isinstance(u, unicode) True - >>> isinstance(b, bytes) + >>> isinstance(b, str) True """ -- 2.26.2