From 8be7e8554195d604d18a7bb270014dd79d3c6255 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 14 May 2010 22:13:17 +0200 Subject: [PATCH] 'fix' stupid test --- tests/run/trybreak.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/trybreak.pyx b/tests/run/trybreak.pyx index 50896ca8..3db9c7ec 100644 --- a/tests/run/trybreak.pyx +++ b/tests/run/trybreak.pyx @@ -5,12 +5,12 @@ a # Indirectly makes sure the cleanup happens correctly on breaking. def foo(): - for x in u"abc": + for x in "abc": try: x() except: break - for x in u"abc": + for x in "abc": try: x() except: -- 2.26.2