Skip to content

Commit

Permalink
check against all
Browse files Browse the repository at this point in the history
  • Loading branch information
Bchass committed Jun 7, 2024
1 parent ee74ddd commit 984b14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinynumpy/tests/test_tinynumpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def test_reshape():
# Test reshape
reshaped_a = a.reshape((4, 2))
reshaped_b = b.reshape((4, 2))
assert np.array_equal(reshaped_a, reshaped_b)
assert(reshaped_a == reshaped_b).all()

# Fail
with raises(ValueError): # Invalid shape
Expand Down

0 comments on commit 984b14a

Please sign in to comment.