Fix BasicRepository Tests when not on UTC

(cherry picked from commit 4f7dc94b94bda49443c28baefc592e7388bcf540)
pull/1843/head
Qstick 3 years ago committed by ta264
parent 60d1a7fbc4
commit cb8482921f

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using FizzWare.NBuilder;
@ -18,6 +18,12 @@ namespace NzbDrone.Core.Test.Datastore
[SetUp]
public void Setup()
{
AssertionOptions.AssertEquivalencyUsing(options =>
{
options.Using<DateTime>(ctx => ctx.Subject.Should().BeCloseTo(ctx.Expectation.ToUniversalTime())).WhenTypeIs<DateTime>();
return options;
});
_basicList = Builder<ScheduledTask>
.CreateListOfSize(5)
.All()

Loading…
Cancel
Save