From 81a3267ad7ba2ccc6ec3a93317b1f01f35fbe566 Mon Sep 17 00:00:00 2001 From: Lilferrit Date: Thu, 8 Aug 2024 15:54:35 -0700 Subject: [PATCH] fixed ubuntu specific test case bug --- tests/unit_tests/test_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_runner.py b/tests/unit_tests/test_runner.py index 067ac157..fd52aeef 100644 --- a/tests/unit_tests/test_runner.py +++ b/tests/unit_tests/test_runner.py @@ -191,7 +191,7 @@ def test_evaluate( assert model_file.is_file() # Test evaluation with annotated peak file - result_file = tmp_path / "result.mzTab" + result_file = tmp_path / "result.mztab" with ModelRunner(config, model_filename=str(model_file)) as runner: runner.predict([mgf_small], result_file, evaluate=True)