Fixed: no longer logging finished searching messages when search did not occur on that indexer

This commit is contained in:
Mark McDowall
2014-07-30 07:31:02 -07:00
parent 705d4a3d02
commit 043ca57e1e
2 changed files with 33 additions and 15 deletions
@@ -1,6 +1,6 @@
using System;
using NUnit.Framework;
using NzbDrone.Common.Processes;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Core.HealthCheck.Checks;
using NzbDrone.Core.Test.Framework;
@@ -17,8 +17,8 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
private void GivenOutput(string version)
{
Mocker.GetMock<IRuntimeProvider>()
.Setup(s => s.GetVersion())
Mocker.GetMock<IRuntimeInfo>()
.SetupGet(s => s.RuntimeVersion)
.Returns(String.Format("{0} (tarball Wed Sep 25 16:35:44 CDT 2013)", version));
}