Skip to content

Commit f2c3ced

Browse files
committed
Fix test assertion
1 parent 2b4f26a commit f2c3ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pythoncapi_compat_cext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2140,7 +2140,7 @@ test_structmember(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))
21402140
assert(Py_T_ULONGLONG == T_ULONGLONG);
21412141
assert(Py_T_PYSSIZET == T_PYSSIZET);
21422142
#if PY_VERSION_HEX >= 0x03000000 && !defined(PYPY_VERSION)
2143-
assert(_Py_T_NONE == _Py_T_NONE);
2143+
assert(_Py_T_NONE == T_NONE);
21442144
#endif
21452145
assert(Py_READONLY == READONLY);
21462146
assert(Py_AUDIT_READ == READ_RESTRICTED);

0 commit comments

Comments
 (0)