From 59443121fc613bab0482409cf29340c591f4a350 Mon Sep 17 00:00:00 2001 From: Gchism94 Date: Fri, 1 Mar 2024 13:24:29 -0700 Subject: [PATCH] Fix bug in commit message check --- tests/test_commit_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commit_analysis.py b/tests/test_commit_analysis.py index de1294e..8dc05b8 100644 --- a/tests/test_commit_analysis.py +++ b/tests/test_commit_analysis.py @@ -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 }