Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Mar 16, 2024
1 parent 2e8db11 commit 7758a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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: <class 'numpy.ndarray'>",
match="Expected pandas-like dataframe, Polars dataframe, or Polars lazyframe, got: <class 'numpy.ndarray'>",
):
nw.DataFrame(array)

0 comments on commit 7758a2b

Please sign in to comment.