diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 51a34271e781b8..a754a5ca981479 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -1,6 +1,6 @@ # Python test set -- part 6, built-in types -from test.support import run_with_locale, cpython_only, MISSING_C_DOCSTRINGS +from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS from test.test_import import no_rerun import collections.abc from collections import namedtuple, UserDict @@ -2379,6 +2379,7 @@ def setUpClass(cls): import test.support.interpreters.channels @cpython_only + @unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.") @no_rerun('channels (and queues) might have a refleak; see gh-122199') def test_slot_wrappers(self): rch, sch = interpreters.channels.create()