better process.start for mono

This commit is contained in:
kay.one 2013-08-13 22:20:24 -07:00
commit 435904bc0a
12 changed files with 34 additions and 45 deletions

View file

@ -104,7 +104,7 @@ namespace NzbDrone.Core.Test.UpdateTests
Subject.Execute(new ApplicationUpdateCommand());
Mocker.GetMock<IProcessProvider>()
.Verify(c => c.ShellExecute(It.IsAny<string>(), "12", null, null), Times.Once());
.Verify(c => c.Start(It.IsAny<string>(), "12", null, null), Times.Once());
}
[Test]