Skip to content

Commit 1a0113c

Browse files
author
IvanARashid
committed
Changed function name
1 parent 71d43a4 commit 1a0113c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/IVIMmodels/unit_tests/simple_test_run_of_algorithm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Simple test code...
88
# Used to just do a test run of an algorithm during development
9-
def test_run(model, **kwargs):
9+
def dev_test_run(model, **kwargs):
1010
bvalues = np.array([0, 200, 500, 800])
1111

1212
def ivim_model(b, S0=1, f=0.1, Dstar=0.03, D=0.001):
@@ -25,5 +25,5 @@ def ivim_model(b, S0=1, f=0.1, Dstar=0.03, D=0.001):
2525
model1 = ETP_SRI_LinearFitting(thresholds=[200])
2626
model2 = IAR_LU_biexp()
2727

28-
test_run(model1, linear_fit_option=True)
29-
test_run(model2)
28+
dev_test_run(model1, linear_fit_option=True)
29+
dev_test_run(model2)

0 commit comments

Comments
 (0)