Skip to content

Commit

Permalink
Fix empty graph test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed Feb 23, 2024
1 parent 9114301 commit 2287933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_candidate_graph/test_graph_from_segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_graph_from_segmentation_invalid():


def test_graph_from_segmentation_empty():
empty_graph = graph_from_segmentation(np.zeros((3, 10, 10, 10), dtype="int32"), 10)
empty_graph = graph_from_segmentation(np.zeros((3, 10, 10), dtype="int32"), 10)
assert Counter(empty_graph.nodes) == Counter([])


Expand Down

0 comments on commit 2287933

Please sign in to comment.