Skip to content

Commit

Permalink
test(python): Fix typo in assertion in datatype copy test (#20121)
Browse files Browse the repository at this point in the history
Co-authored-by: Henry Harbeck <henry.harbeck@canstar.com.au>
  • Loading branch information
henryharbeck and Henry Harbeck authored Dec 3, 2024
1 parent ae05c68 commit 875016c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/datatypes/test_datatype.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
def test_datatype_copy() -> None:
dtype = pl.Int64()
result = copy.deepcopy(dtype)
assert dtype == dtype
assert dtype == result
assert isinstance(result, pl.Int64)

0 comments on commit 875016c

Please sign in to comment.