From 652027821d140c4f04fc7ca5883043bad25d89bb Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 9 Apr 2022 01:20:33 -0700 Subject: [PATCH] Fixed integration test's path to Sonarr executable --- src/NzbDrone.Test.Common/NzbDroneRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Test.Common/NzbDroneRunner.cs b/src/NzbDrone.Test.Common/NzbDroneRunner.cs index 833285643..41b8dae49 100644 --- a/src/NzbDrone.Test.Common/NzbDroneRunner.cs +++ b/src/NzbDrone.Test.Common/NzbDroneRunner.cs @@ -54,7 +54,7 @@ namespace NzbDrone.Test.Common } else { - Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "bin", consoleExe)); + Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "bin", consoleExe)); } while (true)