From 7a3308f49ead61757bf82026d1059bda3287a76f Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Wed, 22 Mar 2023 09:58:29 +0000 Subject: [PATCH] gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 --- Lib/test/test_exceptions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 284f26be717794..74a5884264d577 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -1135,7 +1135,6 @@ def cycle(): 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.