Skip to content

Commit a6d8093

Browse files
committed
Update windows-only ctypes test
1 parent 8ea9e7d commit a6d8093

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests/cpyext

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_ctypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def test_meson_windows_detect_native_arch() -> str:
249249
if kernel32.IsWow64Process2(process, ctypes.byref(process_arch), ctypes.byref(native_arch)):
250250
assert native_arch.value == 0x8664, "only amd64 supported by GraalPy on Windows"
251251
except AttributeError as e:
252-
if not "Unknown identifier: IsWow64Process2" in str(e):
252+
if not "function 'IsWow64Process2' not found" in str(e):
253253
raise e

0 commit comments

Comments
 (0)