From 417089e88bd4ea146b9497e06e8edeb58a59cd65 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Wed, 25 Sep 2019 15:05:55 +0100 Subject: [PATCH] bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388) --- Lib/ctypes/test/test_structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ctypes/test/test_structures.py b/Lib/ctypes/test/test_structures.py index 661efc1a0f8..fedcae24dfd 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