Skip to content

Commit

Permalink
Fix Laplace test
Browse files Browse the repository at this point in the history
  • Loading branch information
pitkajuh committed Apr 13, 2024
1 parent 51ec376 commit 0241ae4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions skimage/filters/tests/test_edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,11 @@ def test_laplace_zeros():
[
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, 0.0, 0.0],
[0.0, 0.0, -1.0, 2.0, 1.0, 2.0, -1.0, 0.0, 0.0],
[0.0, 0.0, -1.0, 1.0, 0.0, 1.0, -1.0, 0.0, 0.0],
[0.0, 0.0, -1.0, 2.0, 1.0, 2.0, -1.0, 0.0, 0.0],
[0.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 1.0, -2.0, -1.0, -2.0, 1.0, 0.0, 0.0],
[0.0, 0.0, 1.0, -1.0, 0.0, -1.0, 1.0, 0.0, 0.0],
[0.0, 0.0, 1.0, -2.0, -1.0, -2.0, 1.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
]
Expand Down

0 comments on commit 0241ae4

Please sign in to comment.