Skip to content

Commit

Permalink
supposed to raise due to type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Aug 26, 2024
1 parent 28713e7 commit 6335f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/frame/test_invalid.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_validate_laziness() -> None:
NotImplementedError,
match=("The items to concatenate should either all be eager, or all lazy"),
):
nw.concat([nw.from_native(df, eager_only=True), nw.from_native(df).lazy()])
nw.concat([nw.from_native(df, eager_only=True), nw.from_native(df).lazy()]) # type: ignore[list-item]


@pytest.mark.skipif(
Expand Down

0 comments on commit 6335f76

Please sign in to comment.