Skip to content

Commit 7757d0f

Browse files
committed
fix(test): the high-b array had too large scale, reducing to preempt false positives
1 parent 99d008f commit 7757d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dmriprep/utils/tests/test_vectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def mock_func(*args, **kwargs):
106106
def test_b0mask_from_data(tmp_path):
107107
"""Check the estimation of bzeros using the dwi data."""
108108

109-
highb = np.random.normal(100, 50, size=(40, 40, 40, 99))
109+
highb = np.random.normal(100, 5, size=(40, 40, 40, 99))
110110
mask_file = tmp_path / 'mask.nii.gz'
111111

112112
# Test 1: no lowb

0 commit comments

Comments
 (0)