From ff1a493aaa3a8dff307fd4833ca184935ceff6b5 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 21 Feb 2009 18:15:17 +0100 Subject: [PATCH] Py3 test fix --- tests/run/delete.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/delete.pyx b/tests/run/delete.pyx index b6cc2c0f..96196745 100644 --- a/tests/run/delete.pyx +++ b/tests/run/delete.pyx @@ -15,4 +15,4 @@ class A: def g(self): self.a = 3 del self.a - return (hasattr(self, "a"), hasattr(self, "g")) + return (hasattr(self, u"a"), hasattr(self, u"g")) -- 2.26.2