We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 902b0d5 commit e229c79Copy full SHA for e229c79
1 file changed
tests/test_autotime.py
@@ -8,10 +8,10 @@ def test_full_cycle():
8
ip = get_ipython()
9
10
with tt.AssertPrints('time: '):
11
- ip.run_cell("%load_ext autotime")
+ ip.run_cell('%load_ext autotime')
12
13
14
- ip.run_cell("x = 1")
+ ip.run_cell('x = 1')
15
16
- with tt.AssertPrints(''):
17
- ip.run_cell("%unload_ext autotime")
+ with tt.AssertNotPrints('time: '):
+ ip.run_cell('%unload_ext autotime')
0 commit comments