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

index 2bd6b34df957de1e147e7a43d54ae3188a44d26d..7d01f3962b126fdb0a5d6119896f9af3792b3496 100644 (file)
@@ -50,7 +50,7 @@ import sys
 if sys.version_info[0] >= 3:
     doctest = doctest.replace(u" u'", u" '")
 
-__test__ = {"test_docstrings" : doctest}
+__test__ = {u"test_docstrings" : doctest}
 
 def f():
     u"This is a function docstring."