From 76c68c16c5025b4ae41aebbeb5d6fd7345007299 Mon Sep 17 00:00:00 2001 From: Laurent Minot Date: Mon, 25 Apr 2022 14:41:41 +0200 Subject: [PATCH] FIx unit test --- GitTimelapseView.Tests/TimelapseHistoryTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitTimelapseView.Tests/TimelapseHistoryTests.cs b/GitTimelapseView.Tests/TimelapseHistoryTests.cs index 2c67ec7..21318e8 100644 --- a/GitTimelapseView.Tests/TimelapseHistoryTests.cs +++ b/GitTimelapseView.Tests/TimelapseHistoryTests.cs @@ -24,7 +24,7 @@ public void TimelapseHistory_ForThisSourceFile_ContainsAtLeastTwoCommits() history.Initialize(NullLogger.Instance); Assert.NotNull(history); - Assert.GreaterOrEqual(history.Revisions.Count, 4); + Assert.GreaterOrEqual(history.Revisions.Count, 3); } private static string? GetThisSourceFilePath([CallerFilePath] string? srcFilePath = null) => srcFilePath;