##// END OF EJS Templates
Remove debugging prints
Thomas Kluyver -
Show More
@@ -71,8 +71,6 class InteractiveShellTestCase(unittest.TestCase):
71 71 def test_run_cell_multiline(self):
72 72 """Multi-block, multi-line cells must execute correctly.
73 73 """
74 print(ip.history_manager.input_hist_raw)
75 print(ip.history_manager.output_hist)
76 74 src = '\n'.join(["x=1",
77 75 "y=2",
78 76 "if 1:",
@@ -82,8 +80,6 class InteractiveShellTestCase(unittest.TestCase):
82 80 self.assertEqual(ip.user_ns['x'], 2)
83 81 self.assertEqual(ip.user_ns['y'], 3)
84 82 self.assertEqual(res.success, True)
85 print(ip.history_manager.input_hist_raw)
86 print(ip.history_manager.output_hist)
87 83 self.assertEqual(res.result, None)
88 84
89 85 def test_multiline_string_cells(self):
General Comments 0
You need to be logged in to leave comments. Login now