diff options
Diffstat (limited to 'Lib/test/test_hotshot.py')
-rw-r--r-- | Lib/test/test_hotshot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_hotshot.py b/Lib/test/test_hotshot.py index 2a6816f..ebd2aaa 100644 --- a/Lib/test/test_hotshot.py +++ b/Lib/test/test_hotshot.py @@ -63,8 +63,11 @@ class HotShotTestCase(unittest.TestCase): def run_test(self, callable, events, profiler=None): if profiler is None: profiler = self.new_profiler() + self.failUnless(not profiler._prof.closed) profiler.runcall(callable) + self.failUnless(not profiler._prof.closed) profiler.close() + self.failUnless(profiler._prof.closed) self.check_events(events) def test_addinfo(self): |