Fixed: Don't trigger SceneMapping update and Housekeeping right on the startup event.

This commit is contained in:
Taloth Saldono
2016-03-01 23:50:09 +01:00
parent 55e870f295
commit e5de7fb8cf
3 changed files with 2 additions and 14 deletions

View File

@@ -124,7 +124,7 @@ namespace NzbDrone.Core.Test.DataAugmentation.Scene
.Returns(Builder<SceneMapping>.CreateListOfSize(1).Build());
Subject.HandleAsync(new ApplicationStartedEvent());
Subject.Execute(new UpdateSceneMappingCommand());
Mocker.GetMock<ISceneMappingRepository>()
.Verify(v => v.All(), Times.Once());