diff options
author | Brett Cannon <brett@python.org> | 2011-03-11 22:44:43 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2011-03-11 22:44:43 (GMT) |
commit | 755d5129c67223780d721d70c2126d87121b720d (patch) | |
tree | 8315cd17312401f3747b2cb01d4d263fd055a4ab /Lib/test | |
parent | 16c4ce19033faa4ed049d03f3ed379aae5ebd880 (diff) | |
download | cpython-755d5129c67223780d721d70c2126d87121b720d.zip cpython-755d5129c67223780d721d70c2126d87121b720d.tar.gz cpython-755d5129c67223780d721d70c2126d87121b720d.tar.bz2 |
Remove a now unneeded tweak to test_zipimport_support in order to not
fail under tracing.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_zipimport_support.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_zipimport_support.py b/Lib/test/test_zipimport_support.py index e3dd3e9..f0e2fbc 100644 --- a/Lib/test/test_zipimport_support.py +++ b/Lib/test/test_zipimport_support.py @@ -175,11 +175,6 @@ class ZipSupportTests(unittest.TestCase): test_zipped_doctest.test_testfile, test_zipped_doctest.test_unittest_reportflags, ] - # These tests are skipped when a trace funciton is set - can_fail_due_to_tracing = [ - test_zipped_doctest.test_pdb_set_trace, - test_zipped_doctest.test_pdb_set_trace_nested, - ] for obj in known_good_tests: _run_object_doctest(obj, test_zipped_doctest) |