Show More
@@ -244,7 +244,6 b' class TestMagicRunSimple(tt.TempFileMixin):' | |||
|
244 | 244 | err = None |
|
245 | 245 | tt.ipexec_validate(self.fname, 'object A deleted', err) |
|
246 | 246 | |
|
247 | @dec.skip_known_failure | |
|
248 | 247 | def test_aggressive_namespace_cleanup(self): |
|
249 | 248 | """Test that namespace cleanup is not too aggressive GH-238 |
|
250 | 249 | |
@@ -262,7 +261,7 b' class TestMagicRunSimple(tt.TempFileMixin):' | |||
|
262 | 261 | self.mktmp(py3compat.doctest_refactor_print(src)) |
|
263 | 262 | _ip.magic('run %s' % self.fname) |
|
264 | 263 | _ip.run_cell('ip == get_ipython()') |
|
265 |
nt.assert_equal(_ip.user_ns['i'], |
|
|
264 | nt.assert_equal(_ip.user_ns['i'], 4) | |
|
266 | 265 | |
|
267 | 266 | def test_run_second(self): |
|
268 | 267 | """Test that running a second file doesn't clobber the first, gh-3547 |
General Comments 0
You need to be logged in to leave comments.
Login now