Skip to content

Commit cf7b845

Browse files
committed
Fixed another flaky test.
1 parent df3c6ed commit cf7b845

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NzbDrone.Core.Test/Housekeeping/Housekeepers/FixFutureDownloadClientStatusTimesFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public void should_set_most_recent_failure_when_its_in_the_future()
8585
Mocker.GetMock<IDownloadClientStatusRepository>()
8686
.Verify(v => v.UpdateMany(
8787
It.Is<List<DownloadClientStatus>>(i => i.All(
88-
s => s.MostRecentFailure.Value < DateTime.UtcNow))
88+
s => s.MostRecentFailure.Value <= DateTime.UtcNow))
8989
)
9090
);
9191
}

0 commit comments

Comments
 (0)