From 4bf744f21d657d6d18fb1cefe9f0e68e81e9e43b Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 30 Dec 2008 13:05:36 +0100 Subject: [PATCH] Py3 test case fix --- tests/run/inop.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/inop.pyx b/tests/run/inop.pyx index c7ba3768..2b9c693c 100644 --- a/tests/run/inop.pyx +++ b/tests/run/inop.pyx @@ -66,5 +66,5 @@ def m(int a): return result def n(a): - cdef int result = a.lower() in ['a *','b *','c *','d *'] + cdef int result = a.lower() in [u'a *',u'b *',u'c *',u'd *'] return result -- 2.26.2