From ea2e8e499d99f4b0b9585e38a69c6b4c018b6f85 Mon Sep 17 00:00:00 2001 From: ta264 Date: Tue, 9 Jul 2019 21:46:10 +0100 Subject: [PATCH] Fixed: Failing history test --- src/NzbDrone.Core.Test/HistoryTests/HistoryServiceFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core.Test/HistoryTests/HistoryServiceFixture.cs b/src/NzbDrone.Core.Test/HistoryTests/HistoryServiceFixture.cs index a04013826..66f62cd77 100644 --- a/src/NzbDrone.Core.Test/HistoryTests/HistoryServiceFixture.cs +++ b/src/NzbDrone.Core.Test/HistoryTests/HistoryServiceFixture.cs @@ -61,12 +61,12 @@ namespace NzbDrone.Core.Test.HistoryTests var trackFile = Builder.CreateNew() .With(f => f.SceneName = null) .With(f => f.Artist = artist) - .With(f => f.Album = new Album()) .Build(); var localTrack = new LocalTrack { Artist = artist, + Album = new Album(), Tracks = tracks, Path = @"C:\Test\Unsorted\Artist.01.Hymn.mp3" };