From 9149c5adc223686d6eb74003e7bad5ef8196868f Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 31 Mar 2015 14:42:26 +0200 Subject: [PATCH] Python 3.2 tests didn't work because a u string literal was used. --- test/test_parser/test_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_parser/test_parser.py b/test/test_parser/test_parser.py index c47fd47c..f1a0da70 100644 --- a/test/test_parser/test_parser.py +++ b/test/test_parser/test_parser.py @@ -205,5 +205,5 @@ def test_param_splitting(): def test_unicode_string(): - s = pt.String(None, u'bö', (0, 0)) + s = pt.String(None, u('bö'), (0, 0)) assert repr(s) # Should not raise an Error!