We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d1487e commit a9a4316Copy full SHA for a9a4316
1 file changed
GitContentSearch.Tests/GitContentSearcherTests.cs
@@ -16,7 +16,7 @@ public void SearchContent_ShouldLogFirstAndLastAppearance_Correctly()
16
var fileSearcherMock = new Mock<IFileSearcher>();
17
18
// Simulate commits
19
- var commits = new[] { "commit1", "commit2", "commit3", "commit4", "commit5" };
+ var commits = new[] { "commit5", "commit4", "commit3", "commit2", "commit1" };
20
gitHelperMock.Setup(g => g.GetGitCommits(It.IsAny<string>(), It.IsAny<string>())).Returns(commits);
21
gitHelperMock.Setup(g => g.GetCommitTime(It.IsAny<string>())).Returns("2023-08-21 12:00:00");
22
0 commit comments