Skip to content

Commit 417089e

Browse files
authored
bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)
1 parent faca855 commit 417089e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/ctypes/test/test_structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ class X(Structure):
480480
self.assertEqual(s.first, got.first)
481481
self.assertEqual(s.second, got.second)
482482

483-
@unittest.skipIf(MACHINE.startswith(('arm', 'ppc')),
483+
@unittest.skipIf(MACHINE.startswith('ppc'),
484484
'Test temporarily disabled on this architecture')
485485
def test_array_in_struct(self):
486486
# See bpo-22273

0 commit comments

Comments
 (0)