@@ -24,7 +24,7 @@ def test_mzml2isa_convert_investigation(self):
2424 os .path .join (self ._mzml_data_dir , study_id + "-partial" ), self ._tmp_dir , study_id , validate_output = True
2525 )
2626 self .assertEqual (len (report ["warnings" ]), 8 )
27- self .assertEqual (len (report ["errors" ]), 3 )
27+ self .assertEqual (len (report ["errors" ]), 2 )
2828
2929 # Strip out the line with Comment[Created With Tool] to avoid changes in version number generated by mzml2isa
3030 with open (os .path .join (self ._tmp_dir , "i_Investigation.txt" )) as in_fp , StringIO () as stripped_actual_file :
@@ -45,7 +45,7 @@ def test_mzml2isa_convert_study_table(self):
4545 os .path .join (self ._mzml_data_dir , study_id + "-partial" ), self ._tmp_dir , study_id , validate_output = True
4646 )
4747 self .assertEqual (len (report ["warnings" ]), 8 )
48- self .assertEqual (len (report ["errors" ]), 3 )
48+ self .assertEqual (len (report ["errors" ]), 2 )
4949 with open (os .path .join (self ._tmp_dir , "s_{}.txt" .format (study_id ))) as out_fp :
5050 with open (
5151 os .path .join (self ._tab_data_dir , study_id + "-partial" , "s_{}.txt" .format (study_id ))
@@ -59,7 +59,7 @@ def test_mzml2isa_convert_assay_table(self):
5959 )
6060 self .assertTrue (report ["validation_finished" ])
6161 self .assertEqual (len (report ["warnings" ]), 8 )
62- self .assertEqual (len (report ["errors" ]), 3 )
62+ self .assertEqual (len (report ["errors" ]), 2 )
6363 with open (
6464 os .path .join (self ._tmp_dir , "a_{}_metabolite_profiling_mass_spectrometry.txt" .format (study_id ))
6565 ) as out_fp :
0 commit comments