Py3 test case fix
authorStefan Behnel <scoder@users.berlios.de>
Tue, 30 Dec 2008 12:00:19 +0000 (13:00 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 30 Dec 2008 12:00:19 +0000 (13:00 +0100)
tests/run/notinop.pyx

index 9271df0f6b003c1ce7b3e1ba296ce330d7985393..0ad223da7c2e4c7e8649ce3ce11a867469115c55 100644 (file)
@@ -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