Skip to content

Commit

Permalink
Fix bug in commit message check
Browse files Browse the repository at this point in the history
  • Loading branch information
Gchism94 committed Mar 1, 2024
1 parent b69c295 commit 5944312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_commit_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_analyze_commit_messages_valid_repo(self, mock_repo):
expected_result = {
"total_commits": 3,
"short_message_issues": 0,
"non_informative_issues": 1, # "Update readme" considered non-informative
"non_informative_issues": 2, # "Update readme" considered non-informative
"non_conforming_messages": 1 # "Update readme" considered non-conforming
}

Expand Down

0 comments on commit 5944312

Please sign in to comment.