Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
AnesBenmerzoug committed Oct 14, 2024
1 parent 454a213 commit b62efdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_weight.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
input_scores=numpy_st.arrays(
dtype=st.one_of(st.just(np.float32), st.just(np.float64)),
shape=numpy_st.array_shapes(min_dims=2, max_dims=2, min_side=1, max_side=5),
fill=st.floats(allow_nan=False, allow_infinity=False),
fill=st.floats(allow_nan=False, allow_infinity=False, width=32),
),
)
def test_identity_weights(input_scores: NDArray):
Expand Down

0 comments on commit b62efdf

Please sign in to comment.