diff --git a/tests/test_common.py b/tests/test_common.py index ec4ddfefd..d200b4215 100644 --- a/tests/test_common.py +++ b/tests/test_common.py @@ -162,6 +162,6 @@ def test_accepted_dataframes() -> None: array = np.array([[0, 4.0], [2, 5]]) with pytest.raises( TypeError, - match="Expected pandas or Polars dataframe or lazyframe, got: ", + match="Expected pandas-like dataframe, Polars dataframe, or Polars lazyframe, got: ", ): nw.DataFrame(array)