diff options
author | Stefan Behnel <scoder@users.berlios.de> | 2008-05-16 20:21:02 +0200 |
---|---|---|
committer | Stefan Behnel <scoder@users.berlios.de> | 2008-05-16 20:21:02 +0200 |
commit | cf9b9b59a3f03bd8863550e5f49a9922d1c1c669 (patch) | |
tree | 969f3ad884b7b8c2bdf9c10bf23ed2d42fc05e00 /tests/run/r_pyclassdefault.pyx | |
parent | e990db848ed569b0c0e8590932c80ac77f513b73 (diff) | |
download | cython-cf9b9b59a3f03bd8863550e5f49a9922d1c1c669.tar.gz |
more test fixes
Diffstat (limited to 'tests/run/r_pyclassdefault.pyx')
-rw-r--r-- | tests/run/r_pyclassdefault.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run/r_pyclassdefault.pyx b/tests/run/r_pyclassdefault.pyx index bc83f49f7..bb36727bd 100644 --- a/tests/run/r_pyclassdefault.pyx +++ b/tests/run/r_pyclassdefault.pyx @@ -14,6 +14,6 @@ class CoconutCarrier: if name is not None: print u"This swallow is called", name if airspeed is not None: - print u"This swallow is flying at", airspeed, "furlongs per fortnight" + print u"This swallow is flying at", airspeed, u"furlongs per fortnight" if coconuts is not None: - print u"This swallow is carrying", coconuts, "coconuts" + print u"This swallow is carrying", coconuts, u"coconuts" |