diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-07-27 02:24:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 02:24:30 (GMT) |
commit | 863a92f2bc708b9e3dfa9828bb8155b8d371e09c (patch) | |
tree | 1c0fd83b4672b3ed495f852a477f8780f4a0a177 | |
parent | 4a2607c1807982a107445b5a35240f587a61eb0d (diff) | |
download | cpython-863a92f2bc708b9e3dfa9828bb8155b8d371e09c.zip cpython-863a92f2bc708b9e3dfa9828bb8155b8d371e09c.tar.gz cpython-863a92f2bc708b9e3dfa9828bb8155b8d371e09c.tar.bz2 |
gh-121832: Revert test skip introduced by #122150. (#122340)
Revert test skip introduced by #122150.
-rw-r--r-- | Lib/test/test_types.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index a87bb27..a84f43b 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -2382,7 +2382,6 @@ class SubinterpreterTests(unittest.TestCase): @cpython_only @no_rerun('channels (and queues) might have a refleak; see gh-122199') - @unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.") def test_slot_wrappers(self): rch, sch = interpreters.channels.create() |