Skip to content

Commit 20b50f8

Browse files
authored
gh-104533: Update test_ctypes.test_structures (#154091)
1 parent 16562f1 commit 20b50f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_ctypes/test_structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ class Foo:
958958
def test_string_annotations(self):
959959
from test.test_ctypes import struct_str_ann
960960
Point = struct_str_ann.Point
961-
fields = [['x', c_int], ['y', c_int]]
961+
fields = [('x', c_int), ('y', c_int)]
962962
self.assertEqual(Point._fields_, fields)
963963

964964

0 commit comments

Comments
 (0)