diff --git a/tests/revision/test_revisions.py b/tests/revision/test_revisions.py index 928a2f6fd..e54c02d97 100644 --- a/tests/revision/test_revisions.py +++ b/tests/revision/test_revisions.py @@ -26,3 +26,9 @@ def test_config_specific_lookup(self) -> None: self.assertEqual( processed_rev_files_cid_1[0].report_filename.config_id, 1 ) + + processed_rev_files_cid_2 = get_processed_revisions_files( + "SynthSAContextSensitivity", config_id=2 + ) + # there should not be a report for config id 2 + self.assertEqual(len(processed_rev_files_cid_2), 0)