Fixed: one_to_one test if system timezone isn't UTC

pull/861/head
ta264 5 years ago
parent a98d45d3de
commit 59b40bd032

@ -7,6 +7,7 @@ using NzbDrone.Core.Qualities;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Core.Music;
using NzbDrone.Core.Languages;
using System;
namespace NzbDrone.Core.Test.Datastore
{
@ -18,6 +19,9 @@ namespace NzbDrone.Core.Test.Datastore
{
var album = Builder<Album>.CreateNew()
.With(c => c.Id = 0)
.With(x => x.ReleaseDate = DateTime.UtcNow)
.With(x => x.LastInfoSync = DateTime.UtcNow)
.With(x => x.Added = DateTime.UtcNow)
.BuildNew();
Db.Insert(album);

Loading…
Cancel
Save