Skip to content

Commit 96b8951

Browse files
committed
Increase assert range to avoid flaky tests
1 parent e170336 commit 96b8951

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -471,10 +471,12 @@ protected static void AssertRefLogEntry(IRepository repo, string canonicalName,
471471

472472
Assert.Equal(committer.Email, reflogEntry.Committer.Email);
473473

474-
// When verifying the timestamp range, give a little more room on the 'before' side.
474+
// When verifying the timestamp range, give a little more room on the range.
475475
// Git or file system datetime truncation seems to cause these stamps to jump up to a second earlier
476476
// than we expect. See https://github.com/libgit2/libgit2sharp/issues/1764
477-
Assert.InRange(reflogEntry.Committer.When, before - TimeSpan.FromSeconds(1), DateTimeOffset.Now);
477+
var low = before - TimeSpan.FromSeconds(1);
478+
var high = DateTimeOffset.Now.TruncateMilliseconds() + TimeSpan.FromSeconds(1);
479+
Assert.InRange(reflogEntry.Committer.When, low, high);
478480
}
479481

480482
protected static void EnableRefLog(IRepository repository, bool enable = true)

0 commit comments

Comments
 (0)