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 @@ public void should_use_file_name_for_source_title_if_scene_name_is_null() 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" };