Skip to content

Commit 335ed05

Browse files
committed
test(typing): Correctly ignore on invalid test
Indicates the new signature is working
1 parent 93553b2 commit 335ed05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/frame/invalid_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_validate_laziness() -> None:
8383
TypeError,
8484
match=("The items to concatenate should either all be eager, or all lazy"),
8585
):
86-
nw.concat([nw.from_native(df, eager_only=True), nw.from_native(df).lazy()])
86+
nw.concat([nw.from_native(df, eager_only=True), nw.from_native(df).lazy()]) # type: ignore[type-var]
8787

8888

8989
@pytest.mark.slow

0 commit comments

Comments
 (0)