Skip to content

Commit

Permalink
fix [Bug]: Missing argument in log message #39
Browse files Browse the repository at this point in the history
  • Loading branch information
karacolada committed Jun 13, 2024
1 parent 083deb1 commit df50d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuji_server/evaluators/fair_evaluator_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ def testDependencies(self):
f"{self.metric_identifier} : Did not find any of {required_dependency_files} ({test_id})."
)
else:
self.logger.log(f"{self.metric_identifier} : Found dependency files ({test_id}).")
self.logger.info(f"{self.metric_identifier} : Found dependency files ({test_id}).")
if not found_automation:
self.logger.warning(
f"{self.metric_identifier} : Did not find {automation_requirements['modality']} keywords {required_automation_keywords} in {required_automation_locations} ({test_id})."
)
else:
self.logger.warning(f"{self.metric_identifier} : Found automation keywords ({test_id}).")
self.logger.info(f"{self.metric_identifier} : Found automation keywords ({test_id}).")
return test_status

def testDependenciesBuildAutomatedChecks(self):
Expand Down

0 comments on commit df50d5d

Please sign in to comment.