##// END OF EJS Templates
Fix test for changes in traitlets...
Thomas Kluyver -
Show More
@@ -99,7 +99,10 b' def test_config_print_class():'
99 99 _ip.magic('config TerminalInteractiveShell')
100 100
101 101 stdout = captured.stdout
102 nt.assert_in("TerminalInteractiveShell options", stdout)
102 if not re.match("TerminalInteractiveShell.* options", stdout.splitlines()[0]):
103 print(stdout)
104 raise AssertionError("1st line of stdout not like "
105 "'TerminalInteractiveShell.* options'")
103 106
104 107 def test_rehashx():
105 108 # clear up everything
General Comments 0
You need to be logged in to leave comments. Login now