From 20b50f8ec4602fb108e029e6f84b2a19294a95d2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 19 Jul 2026 12:51:29 +0200 Subject: [PATCH] gh-104533: Update test_ctypes.test_structures (#154091) --- Lib/test/test_ctypes/test_structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_ctypes/test_structures.py b/Lib/test/test_ctypes/test_structures.py index 04c3682e8308..a74a3548ee78 100644 --- a/Lib/test/test_ctypes/test_structures.py +++ b/Lib/test/test_ctypes/test_structures.py @@ -958,7 +958,7 @@ class StructureTestCase(unittest.TestCase, StructCheckMixin): 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) -- 2.47.3