Skip to content

Commit

Permalink
fix tests for windows int width
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Aug 2, 2024
1 parent a2dfb64 commit 952289d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lenskit/tests/test_pipeline_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_data_compat_generic():


def test_numpy_typecheck():
assert is_compatible_data(np.arange(10), NDArray[np.int64])
assert is_compatible_data(np.arange(10, dtype="i8"), NDArray[np.int64])
assert is_compatible_data(np.arange(10, dtype="i4"), NDArray[np.int32])
assert is_compatible_data(np.arange(10), ArrayLike)
assert is_compatible_data(np.arange(10), NDArray[np.integer])
Expand Down

0 comments on commit 952289d

Please sign in to comment.