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