mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-04 19:43:03 +01:00
Fixed another flaky test.
This commit is contained in:
parent
df3c6ed572
commit
cf7b8455d4
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ public void should_set_most_recent_failure_when_its_in_the_future()
|
|||
Mocker.GetMock<IDownloadClientStatusRepository>()
|
||||
.Verify(v => v.UpdateMany(
|
||||
It.Is<List<DownloadClientStatus>>(i => i.All(
|
||||
s => s.MostRecentFailure.Value < DateTime.UtcNow))
|
||||
s => s.MostRecentFailure.Value <= DateTime.UtcNow))
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue