From be6a7bf0cbb4a3c2a42cbba080ce95d7e2116956 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sun, 19 Jul 2026 12:18:51 +0200 Subject: [PATCH] gh-104533: Update test_ctypes.test_structures --- 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 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)