##// END OF EJS Templates
Removed pesky decorative quotes from the OTHER test function
Thomas Adriaan Hellinger -
Show More
@@ -42,12 +42,12 b' def test_alias_args_error():'
42 42
43 43 def test_alias_args_commented():
44 44 """Check that alias correctly ignores 'commented out' args"""
45 _ip.magic('alias commetarg echo this is %%s a "commented out" arg')
45 _ip.magic('alias commetarg echo this is %%s a commented out arg')
46 46
47 47 with capture_output() as cap:
48 48 _ip.run_cell('commetarg')
49 49
50 nt.assert_equal(cap.stdout, 'this is %s a "commented out" arg')
50 nt.assert_equal(cap.stdout, 'this is %s a commented out arg')
51 51
52 52 def test_alias_args_commented_nargs():
53 53 """Check that alias correctly counts args, excluding those commented out"""
General Comments 0
You need to be logged in to leave comments. Login now