8000 TST: Fix build by changing call signature · numpy/numpy@0fc6adb · GitHub
[go: up one dir, main page]

Skip to content

Commit 0fc6adb

Browse files
committed
TST: Fix build by changing call signature
1 parent 5bdeb35 commit 0fc6adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/f2py/tests/test_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def callback(cu, lencu):
116116

117117
f = getattr(self.module, "string_callback_array")
118118
for cu in [cu1, cu2, cu3]:
119-
res = f(callback, cu, len(cu))
119+
res = f(callback, cu)
120120
assert res == 0
121121

122122
def test_threadsafety(self):

0 commit comments

Comments
 (0)
0