Fixed update client path issue

This commit is contained in:
kay.one 2011-11-13 19:09:34 -08:00
commit fbf7d20c5d
6 changed files with 17 additions and 15 deletions

View file

@ -64,7 +64,7 @@ namespace NzbDrone.Update.Test
_program.Start(new[] { "12", "" });
//Assert
Mocker.GetMock<UpdateProvider>().Verify(c => c.Start(ProcessPath), Times.Once());
Mocker.GetMock<UpdateProvider>().Verify(c => c.Start(@"C:\NzbDrone"), Times.Once());
}