Skip to content

Commit c75e0b7

Browse files
committed
fix test
1 parent 085ae73 commit c75e0b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/window/test_numba.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def f(x):
304304

305305
@td.skip_if_no("numba")
306306
def test_invalid_kwargs_nopython():
307-
with pytest.raises(NumbaUtilError, match="numba does not support kwargs with"):
307+
with pytest.raises(NumbaUtilError, match="numba does not support keyword-only arguments"):
308308
Series(range(1)).rolling(1).apply(
309309
lambda x: x, kwargs={"a": 1}, engine="numba", raw=True
310310
)

0 commit comments

Comments
 (0)