diff options
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r-- | Lib/test/test_struct.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 04ec3ed0837..5fee9fbb92a 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -10,7 +10,7 @@ import sys import weakref from test import support -from test.support import import_helper, suppress_immortalization +from test.support import import_helper from test.support.script_helper import assert_python_ok from test.support.testcase import ComplexesAreIdenticalMixin @@ -697,7 +697,6 @@ class StructTest(ComplexesAreIdenticalMixin, unittest.TestCase): self.assertIn(b"Exception ignored in:", stderr) self.assertIn(b"C.__del__", stderr) - @suppress_immortalization() def test__struct_reference_cycle_cleaned_up(self): # Regression test for python/cpython#94207. |