Skip to content

Commit cdb8f6e

Browse files
committed
Update test assertion to match (actual, expected) convention
1 parent d3f65b6 commit cdb8f6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_ctypes/test_loading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_load_without_name_and_with_handle_posix(self):
112112
lib1 = CDLL(libc_name)
113113
handle = lib1._handle
114114
lib2 = CDLL(name=None, handle=handle)
115-
self.assertIs(handle, lib2._handle)
115+
self.assertIs(lib2._handle, handle)
116116

117117
@unittest.skipUnless(os.name == "nt", 'Windows-specific test')
118118
def test_1703286_A(self):

0 commit comments

Comments
 (0)