##// END OF EJS Templates
Use non-deprecated assert form
Thomas Kluyver -
Show More
@@ -577,7 +577,7 b' def test_timeit_return_quiet():'
577 assert (res is not None)
577 assert (res is not None)
578
578
579 def test_timeit_invalid_return():
579 def test_timeit_invalid_return():
580 with nt.assert_raises_regexp(SyntaxError, "outside function"):
580 with nt.assert_raises_regex(SyntaxError, "outside function"):
581 _ip.run_line_magic('timeit', 'return')
581 _ip.run_line_magic('timeit', 'return')
582
582
583 @dec.skipif(execution.profile is None)
583 @dec.skipif(execution.profile is None)
General Comments 0
You need to be logged in to leave comments. Login now