From b53e633194b5d9f34a6359b27222a0b6c118589e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 6 Nov 2014 20:08:47 -0800 Subject: [PATCH] fixed profile unit test --- src/NzbDrone.Core.Test/Profiles/ProfileServiceFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core.Test/Profiles/ProfileServiceFixture.cs b/src/NzbDrone.Core.Test/Profiles/ProfileServiceFixture.cs index 7e33072af..daa98bd8d 100644 --- a/src/NzbDrone.Core.Test/Profiles/ProfileServiceFixture.cs +++ b/src/NzbDrone.Core.Test/Profiles/ProfileServiceFixture.cs @@ -15,12 +15,12 @@ namespace NzbDrone.Core.Test.Profiles public class ProfileServiceFixture : CoreTest { [Test] - public void Init_should_add_two_profiles() + public void init_should_add_default_profiles() { Subject.Handle(new ApplicationStartedEvent()); Mocker.GetMock() - .Verify(v => v.Insert(It.IsAny()), Times.Exactly(4)); + .Verify(v => v.Insert(It.IsAny()), Times.Exactly(5)); } [Test]