Skip to content

Commit 5323909

Browse files
authored
Merge branch 'main' into improve-codeop-test-coverage
2 parents 24d9f76 + 20b50f8 commit 5323909

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)