fix interop tests

pull/6134/head
Jan Tattermusch 9 years ago
parent a49a72dc0d
commit 10e85f1ef7
  1. 4
      src/csharp/Grpc.IntegrationTesting/TestCredentials.cs

@ -35,6 +35,7 @@ using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Grpc.Core;
@ -89,7 +90,8 @@ namespace Grpc.IntegrationTesting
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);
}
}
}

Loading…
Cancel
Save