Skip to content

Commit 8890085

Browse files
committed
Rename test method name
1 parent ecf9aa4 commit 8890085

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_pythoncapi_compat_cext.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ test_vectorcall_args_kwnames(PyObject *func_varargs)
905905

906906

907907
static PyObject *
908-
test_call(PyObject *module, PyObject *Py_UNUSED(args))
908+
test_vectorcall(PyObject *module, PyObject *Py_UNUSED(args))
909909
{
910910
#ifndef PYTHON3
911911
module = PyImport_ImportModule(MODULE_NAME_STR);
@@ -951,7 +951,7 @@ static struct PyMethodDef methods[] = {
951951
{"test_import", test_import, METH_NOARGS, _Py_NULL},
952952
{"test_weakref", test_weakref, METH_NOARGS, _Py_NULL},
953953
{"func_varargs", (PyCFunction)(void*)func_varargs, METH_VARARGS | METH_KEYWORDS, _Py_NULL},
954-
{"test_call", test_call, METH_NOARGS, _Py_NULL},
954+
{"test_vectorcall", test_vectorcall, METH_NOARGS, _Py_NULL},
955955
{_Py_NULL, _Py_NULL, 0, _Py_NULL}
956956
};
957957

0 commit comments

Comments
 (0)