From fb96e099561bbc0749d3929805375915540a4e38 2011-03-24 19:37:03 From: Thomas Kluyver Date: 2011-03-24 19:37:03 Subject: [PATCH] Tweak unicode history test so it will work in Windows. --- diff --git a/IPython/core/tests/test_history.py b/IPython/core/tests/test_history.py index fc5e4b3..55e3252 100644 --- a/IPython/core/tests/test_history.py +++ b/IPython/core/tests/test_history.py @@ -33,7 +33,7 @@ def test_history(): ip.history_manager.init_db() # Has to be called after changing file ip.history_manager.reset() print 'test',histfile - hist = ['a=1', 'def f():\n test = 1\n return test', u'b="žćčšđ"'] + hist = ['a=1', 'def f():\n test = 1\n return test', u"b='€Æ¾÷ß'"] for i, h in enumerate(hist, start=1): ip.history_manager.store_inputs(i, h)