@@ -20,8 +20,8 @@ def setup_module(module):
2020 global filename_prefix # we want to change the global variable
2121 os .makedirs ('./test/results/SI_to_Conc' , exist_ok = True )
2222 filename_prefix = 'SI_to_Conc/TestResults_SI2Conc'
23- log_init (filename_prefix , '_MJT_UoEdinburgh ' , ['label' , 'time (us)' , 'conc_ref' , 'conc_meas' ])
24- log_init (filename_prefix , '_MJT_UoEdinburgh_num ' , ['label' , 'time (us)' , 'conc_ref' , 'conc_meas' ])
23+ log_init (filename_prefix , '_MJT_UoEdinburgh_UK ' , ['label' , 'time (us)' , 'conc_ref' , 'conc_meas' ])
24+ log_init (filename_prefix , '_MJT_UoEdinburgh_UK_num ' , ['label' , 'time (us)' , 'conc_ref' , 'conc_meas' ])
2525
2626# Use the test data to generate a parametrize decorator. This causes the following
2727# test to be run for every test case listed in test_data...
@@ -61,7 +61,7 @@ def test_MJT_UoEdinburgh_UK_sig_to_conc_num(label, fa, tr, T1base, BLpts, r1, s_
6161 row_data = []
6262 for ref , meas in zip (conc_array [1 :], conc_curve [1 :]):
6363 row_data .append ([label , f"{ exc_time :.0f} " , ref , meas ])
64- log_results (filename_prefix , '_MJT_UoEdinburgh_num ' , row_data )
64+ log_results (filename_prefix , '_MJT_UoEdinburgh_UK_num ' , row_data )
6565
6666 # testing
6767 np .testing .assert_allclose ( conc_curve [1 :], conc_array [1 :], rtol = r_tol , atol = a_tol )
@@ -92,7 +92,7 @@ def test_MJT_UoEdinburgh_UK_sig_to_conc(label, fa, tr, T1base, BLpts, r1, s_arra
9292 row_data = []
9393 for ref , meas in zip (conc_array [1 :], conc_curve [1 :]):
9494 row_data .append ([label , f"{ exc_time :.0f} " , ref , meas ])
95- log_results (filename_prefix , '_MJT_UoEdinburgh ' , row_data )
95+ log_results (filename_prefix , '_MJT_UoEdinburgh_UK ' , row_data )
9696
9797 # testing
9898 np .testing .assert_allclose ( conc_curve [1 :], conc_array [1 :], rtol = r_tol , atol = a_tol )
0 commit comments