Skip to content

Commit a9a4316

Browse files
committed
fix test
1 parent 6d1487e commit a9a4316

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GitContentSearch.Tests/GitContentSearcherTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void SearchContent_ShouldLogFirstAndLastAppearance_Correctly()
1616
var fileSearcherMock = new Mock<IFileSearcher>();
1717

1818
// Simulate commits
19-
var commits = new[] { "commit1", "commit2", "commit3", "commit4", "commit5" };
19+
var commits = new[] { "commit5", "commit4", "commit3", "commit2", "commit1" };
2020
gitHelperMock.Setup(g => g.GetGitCommits(It.IsAny<string>(), It.IsAny<string>())).Returns(commits);
2121
gitHelperMock.Setup(g => g.GetCommitTime(It.IsAny<string>())).Returns("2023-08-21 12:00:00");
2222

0 commit comments

Comments
 (0)