##// END OF EJS Templates
Tweak unicode history test so it will work in Windows.
Thomas Kluyver -
Show More
@@ -33,7 +33,7 b' def test_history():'
33 ip.history_manager.init_db() # Has to be called after changing file
33 ip.history_manager.init_db() # Has to be called after changing file
34 ip.history_manager.reset()
34 ip.history_manager.reset()
35 print 'test',histfile
35 print 'test',histfile
36 hist = ['a=1', 'def f():\n test = 1\n return test', u'b="žćčšđ"']
36 hist = ['a=1', 'def f():\n test = 1\n return test', u"b='€Æ¾÷ß'"]
37 for i, h in enumerate(hist, start=1):
37 for i, h in enumerate(hist, start=1):
38 ip.history_manager.store_inputs(i, h)
38 ip.history_manager.store_inputs(i, h)
39
39
General Comments 0
You need to be logged in to leave comments. Login now