1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 15:33:11 +00:00

Fixed another flaky test.

This commit is contained in:
Taloth Saldono 2017-10-27 22:32:04 +02:00
parent df3c6ed572
commit cf7b8455d4

View file

@ -85,7 +85,7 @@ namespace NzbDrone.Core.Test.Housekeeping.Housekeepers
Mocker.GetMock<IDownloadClientStatusRepository>() Mocker.GetMock<IDownloadClientStatusRepository>()
.Verify(v => v.UpdateMany( .Verify(v => v.UpdateMany(
It.Is<List<DownloadClientStatus>>(i => i.All( It.Is<List<DownloadClientStatus>>(i => i.All(
s => s.MostRecentFailure.Value < DateTime.UtcNow)) s => s.MostRecentFailure.Value <= DateTime.UtcNow))
) )
); );
} }