bpo-22273: Re-enabled ctypes test on ARM machines. (GH-16388)

This commit is contained in:
Vinay Sajip 2019-09-25 15:05:55 +01:00 committed by GitHub
parent faca855342
commit 417089e88b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ class StructureTestCase(unittest.TestCase):
self.assertEqual(s.first, got.first) self.assertEqual(s.first, got.first)
self.assertEqual(s.second, got.second) self.assertEqual(s.second, got.second)
@unittest.skipIf(MACHINE.startswith(('arm', 'ppc')), @unittest.skipIf(MACHINE.startswith('ppc'),
'Test temporarily disabled on this architecture') 'Test temporarily disabled on this architecture')
def test_array_in_struct(self): def test_array_in_struct(self):
# See bpo-22273 # See bpo-22273