##// END OF EJS Templates
String in test for #822 was meant to be a bytestring, fixes it.
Fernando Perez -
Show More
@@ -201,7 +201,7 b' class InteractiveShellTestCase(unittest.TestCase):'
201
201
202 def test_var_expand(self):
202 def test_var_expand(self):
203 ip = get_ipython()
203 ip = get_ipython()
204 ip.user_ns['f'] = u'Ca\xc3\xb1o'
204 ip.user_ns['f'] = 'Ca\xc3\xb1o'
205 # This should not raise any exception:
205 # This should not raise any exception:
206 ip.var_expand(u'echo $f')
206 ip.var_expand(u'echo $f')
207
207
General Comments 0
You need to be logged in to leave comments. Login now