From c2989ced7f3a6850f914620a43b3a1d9f64cc1d6 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 (cherry picked from commit 652027821d140c4f04fc7ca5883043bad25d89bb) --- 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 4b4531f52..80043e7bd 100644 --- a/src/NzbDrone.Test.Common/NzbDroneRunner.cs +++ b/src/NzbDrone.Test.Common/NzbDroneRunner.cs @@ -60,7 +60,7 @@ namespace NzbDrone.Test.Common } else { - Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "bin", consoleExe)); + Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "bin", consoleExe)); } while (true)