summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/ctypes/test/test_structures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py
index 661efc1a0f..fedcae24df 100644
--- a/Lib/ctypes/test/test_structures.py
+++ b/Lib/ctypes/test/test_structures.py
@@ -480,7 +480,7 @@ class StructureTestCase(unittest.TestCase):
self.assertEqual(s.first, got.first)
self.assertEqual(s.second, got.second)
- @unittest.skipIf(MACHINE.startswith(('arm', 'ppc')),
+ @unittest.skipIf(MACHINE.startswith('ppc'),
'Test temporarily disabled on this architecture')
def test_array_in_struct(self):
# See bpo-22273