diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-02-05 02:07:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-02-05 02:07:20 (GMT) |
commit | d71b2c1f447dea03087a782dd6849ef41d07e823 (patch) | |
tree | f6332314b720f6892f0169898af0cf9b5719156b | |
parent | 77aa6a71769a36fb6845bb6f9be188b984f00223 (diff) | |
download | cpython-d71b2c1f447dea03087a782dd6849ef41d07e823.zip cpython-d71b2c1f447dea03087a782dd6849ef41d07e823.tar.gz cpython-d71b2c1f447dea03087a782dd6849ef41d07e823.tar.bz2 |
this works correctly in py3 already
-rw-r--r-- | Lib/test/test_with.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_with.py b/Lib/test/test_with.py index 3cbae02..640f31c 100644 --- a/Lib/test/test_with.py +++ b/Lib/test/test_with.py @@ -363,7 +363,6 @@ class ExceptionalTestCase(ContextmanagerAssertionMixin, unittest.TestCase): self.assertAfterWithManagerInvariantsWithError(cm) self.assertAfterWithGeneratorInvariantsWithError(self.resource) - @unittest.expectedFailure def testExceptionNormalized(self): cm = mock_contextmanager_generator() def shouldThrow(): |