Skip to content

Commit

Permalink
updated unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrik-code committed Nov 26, 2024
1 parent a0cabde commit 0777473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion unit_tests/test_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_search_path_simple(self):
dtype=int,
)
rel_cost = -rel_cost
fcost, fpath = find_most_probably_sequence(
fcost, fpath, min_costs_path = find_most_probably_sequence(
cost,
region_rel_cost=rel_cost,
regions=[0, 3],
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/test_postproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Test_Post_Processing(unittest.TestCase):
def test_phase_postprocess(self):
mri, subreg, vert, label = get_test_mri()
print(vert.unique())
subreg_cleaned, vert_cleaned = phase_postprocess_combined(subreg, vert, debug_data={})
subreg_cleaned, vert_cleaned = phase_postprocess_combined(mri, subreg, vert, model_labeling=None, debug_data={})
self.assertTrue(subreg_cleaned.assert_affine(other=vert_cleaned))

vert_labels = vert_cleaned.unique()
Expand Down

0 comments on commit 0777473

Please sign in to comment.