From 80b0fa4e7056073873de457177b6a0c73557c3ae Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 30 Dec 2008 13:58:33 +0100 Subject: [PATCH] Py3 test case fix --- tests/run/r_docstrings.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/r_docstrings.pyx b/tests/run/r_docstrings.pyx index 2bd6b34d..7d01f396 100644 --- a/tests/run/r_docstrings.pyx +++ b/tests/run/r_docstrings.pyx @@ -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." -- 2.26.2