diff --git a/Lib/test/test_ctypes/test_structures.py b/Lib/test/test_ctypes/test_structures.py index 04c3682e8308ece..a74a3548ee78413 100644 --- a/Lib/test/test_ctypes/test_structures.py +++ b/Lib/test/test_ctypes/test_structures.py @@ -958,7 +958,7 @@ class Foo: def test_string_annotations(self): from test.test_ctypes import struct_str_ann Point = struct_str_ann.Point - fields = [['x', c_int], ['y', c_int]] + fields = [('x', c_int), ('y', c_int)] self.assertEqual(Point._fields_, fields)