fixed some broken tests.

This commit is contained in:
Keivan Beigi 2013-02-18 17:57:08 -08:00
commit 324b5e3b80
19 changed files with 95 additions and 135 deletions

View file

@ -9,11 +9,11 @@ namespace NzbDrone.Core.Lifecycle
{
public class AppRestartJob : IJob
{
private readonly HostController _hostController;
private readonly IHostController _hostController;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
public AppRestartJob(HostController hostController)
public AppRestartJob(IHostController hostController)
{
_hostController = hostController;
}