Skip to content

Commit

Permalink
More issues with merge fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdaniel654 committed Nov 14, 2024
1 parent 23b5dd4 commit cfa4323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ukat/mapping/tests/test_t1.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_failed_fit(self):

# Fail to fit using the 2 parameter equation
mapper_two_param = T1(signal_array[..., :2], self.t[:2], self.affine,
parameters=2, mag_corr=True, multithread=True)
parameters=2, mag_corr=False, multithread=True)
assert mapper_two_param.shape == signal_array.shape[:-1]
# Voxels that fail to fit are set to zero
npt.assert_equal(mapper_two_param.t1_map.mean(), 0)
Expand All @@ -180,7 +180,7 @@ def test_failed_fit(self):

# Fail to fit using the 3 parameter equation
mapper_three_param = T1(signal_array[..., :2], self.t[:2], self.affine,
parameters=3, mag_corr=True, multithread=True)
parameters=3, mag_corr=False, multithread=True)
assert mapper_three_param.shape == signal_array.shape[:-1]
# Voxels that fail to fit are set to zero
npt.assert_equal(mapper_three_param.t1_map.mean(), 0)
Expand Down

0 comments on commit cfa4323

Please sign in to comment.