##// END OF EJS Templates
Fix continuation prompt in test.
Fernando Perez -
Show More
@@ -144,11 +144,11 b' def test_strip_email():'
144 src = """\
144 src = """\
145 >> >>> def f(x):
145 >> >>> def f(x):
146 >> ... return x+1
146 >> ... return x+1
147 >> ...
147 >> ...
148 >> >>> zz = f(2.5)"""
148 >> >>> zz = f(2.5)"""
149 cln = """\
149 cln = """\
150 >>> def f(x):
150 >>> def f(x):
151 ... return x+1
151 ... return x+1
152 ...
152 ...
153 >>> zz = f(2.5)"""
153 >>> zz = f(2.5)"""
154 nt.assert_equals(text.strip_email_quotes(src), cln)
154 nt.assert_equals(text.strip_email_quotes(src), cln)
General Comments 0
You need to be logged in to leave comments. Login now