1
0
forked from VimPlug/jedi

Python 3.2 tests didn't work because a u string literal was used.

This commit is contained in:
Dave Halter
2015-03-31 14:42:26 +02:00
parent ef855a5316
commit 9149c5adc2

View File

@@ -205,5 +205,5 @@ def test_param_splitting():
def test_unicode_string(): def test_unicode_string():
s = pt.String(None, u'', (0, 0)) s = pt.String(None, u(''), (0, 0))
assert repr(s) # Should not raise an Error! assert repr(s) # Should not raise an Error!