diff --git a/Lib/test/test_exception_group.py b/Lib/test/test_exception_group.py index dee9b235c1a392..2064f906e1ec28 100644 --- a/Lib/test/test_exception_group.py +++ b/Lib/test/test_exception_group.py @@ -30,8 +30,6 @@ def test_bad_EG_construction__too_many_args(self): with self.assertRaisesRegex(TypeError, MSG): ExceptionGroup('eg', [ValueError('too')], [TypeError('many')]) - # NSKIP013 https://github.com/nanvix/cpython/issues/481 - @unittest.skipIf(support.is_nanvix, "NSKIP013: 32-bit arg numbering garbled") def test_bad_EG_construction__bad_message(self): MSG = 'argument 1 must be str, not ' with self.assertRaisesRegex(TypeError, MSG):