diff options
| author | Zachary Ware <zachary.ware@gmail.com> | 2013-12-10 20:09:20 (GMT) |
|---|---|---|
| committer | Zachary Ware <zachary.ware@gmail.com> | 2013-12-10 20:09:20 (GMT) |
| commit | 1f70221b861a3714735251d57695b2f472d0599b (patch) | |
| tree | 945cd43b04b6351e71c23aa0cb19f6fab1f3ddda /Lib/test/test_warnings.py | |
| parent | 284164b47638e4e71a933ce136a33fdd352f7bac (diff) | |
| download | cpython-1f70221b861a3714735251d57695b2f472d0599b.zip cpython-1f70221b861a3714735251d57695b2f472d0599b.tar.gz cpython-1f70221b861a3714735251d57695b2f472d0599b.tar.bz2 | |
Issue #19572: More silently skipped tests explicitly skipped.
Diffstat (limited to 'Lib/test/test_warnings.py')
| -rw-r--r-- | Lib/test/test_warnings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py index e4850a4..a770ba2 100644 --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -668,7 +668,7 @@ class CatchWarningTests(BaseTest): # Explicit tests for the test_support convenience wrapper wmod = self.module if wmod is not sys.modules['warnings']: - return + self.skipTest('module to test is not loaded warnings module') with test_support.check_warnings(quiet=False) as w: self.assertEqual(w.warnings, []) wmod.simplefilter("always") |
