##// END OF EJS Templates
Switch to raw string to match typing at prompt
Jörgen Stenarson -
Show More
@@ -453,7 +453,7 b' def test_timeit_arguments():'
453 @dec.skipif(execution.profile is None)
453 @dec.skipif(execution.profile is None)
454 def test_prun_quotes():
454 def test_prun_quotes():
455 "Test that prun does not clobber string escapes (GH #1302)"
455 "Test that prun does not clobber string escapes (GH #1302)"
456 _ip.magic("prun -q x = '\t'")
456 _ip.magic(r"prun -q x = '\t'")
457 nt.assert_equal(_ip.user_ns['x'], '\t')
457 nt.assert_equal(_ip.user_ns['x'], '\t')
458
458
459 def test_extension():
459 def test_extension():
General Comments 0
You need to be logged in to leave comments. Login now