From 1f327057ec417a2daa6da6f019e91cd740d9d03c 2011-11-17 22:44:12 From: Thomas Kluyver Date: 2011-11-17 22:44:12 Subject: [PATCH] Fix unicode test for Python 3. --- diff --git a/IPython/core/tests/test_interactiveshell.py b/IPython/core/tests/test_interactiveshell.py index 31bb4af..743dffa 100644 --- a/IPython/core/tests/test_interactiveshell.py +++ b/IPython/core/tests/test_interactiveshell.py @@ -226,5 +226,5 @@ class TestSystemRaw(unittest.TestCase): def test_1(self): """Test system_raw with non-ascii cmd """ - cmd = ur'''python -c "u'åäö'" ''' + cmd = ur'''python -c "'åäö'" ''' _ip.shell.system_raw(cmd)