Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ruth Netser <[email protected]>
Co-authored-by: Miles Dunn <[email protected]>
  • Loading branch information
3 people authored Jan 18, 2024
1 parent 9caa42d commit 396d9c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unittests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from cli.objects.job import Job
from cli.report import Report

_logger = simple_logger.logger.get_logger(__name__)
LOGGER = simple_logger.logger.get_logger(__name__)

BUILD_ID_ENV_VAR = "BUILD_ID"
FIREWATCH_DEFAULT_JIRA_PROJECT_ENV_VAR = "FIREWATCH_DEFAULT_JIRA_PROJECT"
Expand Down Expand Up @@ -90,7 +90,7 @@ class MockIssue:
def create_jira_issue(*args, **kwargs):
_logger.info("Patching Report.create_jira_issue")
_logger.info(
f"Attempted call Report.create_issue with the following keywords: \n{pprint.pformat(kwargs)}",
f"Attempted call Report.create_jira_issue with the following keywords: \n{pprint.pformat(kwargs)}",
)
return MockIssue()

Expand Down

0 comments on commit 396d9c8

Please sign in to comment.