Skip to content

Commit 3376375

Browse files
committed
Fix parameter type in 'test_capsule'.
1 parent 5d93a2c commit 3376375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def compile_module(self, name):
5656
''',
5757
resultspec="i",
5858
argspec='sn',
59-
arguments=["PyObject* name", "Py_ssize_t ptr"],
59+
arguments=["char* name", "Py_ssize_t ptr"],
6060
callfunction="wrap_PyCapsule_Check",
6161
cmpfunc=unhandled_error_compare
6262
)

0 commit comments

Comments
 (0)