From 7138b1d2a06586d698c0972639f8fea37a62298a Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 30 Oct 2009 13:51:28 +0100 Subject: [PATCH] Py3 test fix --- tests/run/ishimoto2.pyx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/run/ishimoto2.pyx b/tests/run/ishimoto2.pyx index 1e2d43a0..18d79f6c 100644 --- a/tests/run/ishimoto2.pyx +++ b/tests/run/ishimoto2.pyx @@ -4,11 +4,11 @@ class C: >>> C().xxx(5) 5 >>> C().xxx() - u'a b' + 'a b' >>> C().xxx(42) 42 - >>> C().xxx() == 'a b' - True + >>> C().xxx() + 'a b' """ - def xxx(self, p=u"a b"): + def xxx(self, p="a b"): return p -- 2.26.2