From 115b3757e2e1da874b1d49389dc7ba2b8e7f5189 Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Wed, 3 Jul 2024 10:11:23 +0100 Subject: [PATCH] Fix bad path --- .../Elastic.Apm.Profiler.Managed.Tests/ProfiledApplication.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/profiler/Elastic.Apm.Profiler.Managed.Tests/ProfiledApplication.cs b/test/profiler/Elastic.Apm.Profiler.Managed.Tests/ProfiledApplication.cs index 354fecad5..5e6fa0c81 100644 --- a/test/profiler/Elastic.Apm.Profiler.Managed.Tests/ProfiledApplication.cs +++ b/test/profiler/Elastic.Apm.Profiler.Managed.Tests/ProfiledApplication.cs @@ -56,7 +56,7 @@ protected ProfiledApplication(string projectName, params string[] folders) profilerFile = "libelastic_apm_profiler.dylib"; _profilerPath = TestEnvironment.IsLinux ? - Path.Combine(SolutionPaths.Root, "target", "x86_64-unknown-linux-gnu/release", "release", profilerFile) : + Path.Combine(SolutionPaths.Root, "target", "x86_64-unknown-linux-gnu", "release", profilerFile) : Path.Combine(SolutionPaths.Root, "target", "release", profilerFile); if (!File.Exists(_profilerPath))