We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f65b6 commit cdb8f6eCopy full SHA for cdb8f6e
Lib/test/test_ctypes/test_loading.py
@@ -112,7 +112,7 @@ def test_load_without_name_and_with_handle_posix(self):
112
lib1 = CDLL(libc_name)
113
handle = lib1._handle
114
lib2 = CDLL(name=None, handle=handle)
115
- self.assertIs(handle, lib2._handle)
+ self.assertIs(lib2._handle, handle)
116
117
@unittest.skipUnless(os.name == "nt", 'Windows-specific test')
118
def test_1703286_A(self):
0 commit comments