Skip to content

Commit

Permalink
fix: correct jira deprecate status value
Browse files Browse the repository at this point in the history
  • Loading branch information
Dat Nguyen committed Nov 17, 2023
1 parent 1cd8af1 commit 25f82ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diqu/alerts/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def raise_issues(self, data: DataFrame) -> ResultCode:
data=joined.loc[
(joined["JIRA_ISSUE_KEY"].isnull())
& (joined["TEST_STATUS"] != "pass")
& (joined["TEST_STATUS"] != "deprecated")
& (joined["TEST_STATUS"] != "deprecate")
]
)
self.__update_issues(
Expand Down

0 comments on commit 25f82ee

Please sign in to comment.