]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 (#102903)
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>
Wed, 5 Apr 2023 14:52:38 +0000 (15:52 +0100)
committerGitHub <noreply@github.com>
Wed, 5 Apr 2023 14:52:38 +0000 (15:52 +0100)
Lib/test/test_exceptions.py

index 284f26be71779493d7e093cca9252a13d363bfc1..74a5884264d577c46f8f7ceef4be1d263e40d049 100644 (file)
@@ -1135,7 +1135,6 @@ class ExceptionTests(unittest.TestCase):
         self.assertIsInstance(exc.__context__, ValueError)
         self.assertIs(exc.__context__.__context__, exc.__context__)
 
-    @unittest.skip("See issue 44895")
     def test_no_hang_on_context_chain_cycle2(self):
         # See issue 25782. Cycle at head of context chain.