Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/engine_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ def test_commit_message_validator_with_stdin(self, mock_has_commits):
@patch("commit_check.engine.get_commit_info")
@patch("commit_check.engine.has_commits")
@pytest.mark.benchmark
def test_commit_message_validator_failure(self, mock_has_commits):
def test_commit_message_validator_failure(self, mock_has_commits, mock_get_commit_info):
"""Test CommitMessageValidator failure case."""
mock_has_commits.return_value = True

Expand Down
Loading