Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Jan 31, 2024
1 parent a5f0d80 commit 8231b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_divide_scalar_by_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_divide_scalar_by_image():
reference = cle.push(np.asarray([[0.5, 0.5], [0.1, 0.1], [0.2, 0.2]]))

result = cle.create(test1, dtype=float)
cle.divide_image_and_scalar(test1, result, 10)
cle.divide_scalar_by_image(test1, result, 10)

a = cle.pull(result)
b = cle.pull(reference)
Expand Down

0 comments on commit 8231b3e

Please sign in to comment.