Skip to content
Snippets Groups Projects
Commit 10e85f1e authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

fix interop tests

parent a49a72dc
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ using System; ...@@ -35,6 +35,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Reflection;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading.Tasks; using System.Threading.Tasks;
using Grpc.Core; using Grpc.Core;
...@@ -89,7 +90,8 @@ namespace Grpc.IntegrationTesting ...@@ -89,7 +90,8 @@ namespace Grpc.IntegrationTesting
private static string GetPath(string relativePath) private static string GetPath(string relativePath)
{ {
return Path.Combine(TestContext.CurrentContext.TestDirectory, relativePath); var assemblyDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
return Path.Combine(assemblyDir, relativePath);
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment