fixed broken test.

This commit is contained in:
kay.one 2013-08-06 22:54:50 -07:00
commit c88b5ee946
2 changed files with 4 additions and 7 deletions

View file

@ -103,10 +103,8 @@ namespace NzbDrone.Core.Test.UpdateTests
{
Subject.Execute(new ApplicationUpdateCommand());
Mocker.GetMock<IProcessProvider>().Verify(
c => c.Start(It.Is<ProcessStartInfo>(p =>
!string.IsNullOrWhiteSpace(p.FileName) &&
p.Arguments == "12")));
Mocker.GetMock<IProcessProvider>()
.Verify(c => c.ShellExecute(It.IsAny<string>(), "12", null, null), Times.Once());
}
[Test]