Skip to content

Commit

Permalink
oops, fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgostick committed Mar 28, 2024
1 parent 467217c commit b361fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def test_local_thickness_known_sizes(self):
im = np.zeros(shape=[300, 300])
im = ps.generators.random_spheres(im=im, r=20)
im = ps.generators.random_spheres(im=im, r=10)
lt = ps.filters.local_thickness(~im, sizes=[20, 10])
lt = ps.filters.local_thickness(im, sizes=[20, 10])
assert np.all(np.unique(lt) == [0, 10, 20])

def test_porosimetry(self):
Expand Down

0 comments on commit b361fed

Please sign in to comment.