From 667d48b4b65727dca4ebb87997c92858c0ca9847 Mon Sep 17 00:00:00 2001 From: rxu17 <26471741+rxu17@users.noreply.github.com> Date: Wed, 15 Nov 2023 17:34:27 -0800 Subject: [PATCH] lint --- tests/test_clinical.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_clinical.py b/tests/test_clinical.py index fa9d9be0..1c09c106 100644 --- a/tests/test_clinical.py +++ b/tests/test_clinical.py @@ -1120,6 +1120,7 @@ def get_cross_validate_bed_files_test_cases(): }, ] + @pytest.mark.parametrize( "test_cases", get_cross_validate_bed_files_test_cases(), ids=lambda x: x["name"] ) @@ -1127,7 +1128,9 @@ def test_that_cross_validate_bed_files_exist_returns_correct_msgs( clin_class, test_cases ): clin_class.ancillary_files = test_cases["test_ancillary_files"] - missing_files = clin_class._cross_validate_bed_files_exist(test_cases["test_clinical_df"]) + missing_files = clin_class._cross_validate_bed_files_exist( + test_cases["test_clinical_df"] + ) assert Counter(test_cases["expected_missing_files"]) == Counter(missing_files)