aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs')
-rw-r--r--src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs b/src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs
index c5d43f08d9..06376f8ef4 100644
--- a/src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs
+++ b/src/csharp/Grpc.Tools.Tests/ProtoCompileCommandLineGeneratorTest.cs
@@ -16,6 +16,7 @@
#endregion
+using System.IO;
using Microsoft.Build.Framework;
using Moq;
using NUnit.Framework;
@@ -152,6 +153,8 @@ namespace Grpc.Tools.Tests {
[TestCase("C:\\" , "C:\\")]
[TestCase("C:\\\\" , "C:\\")]
public void DirectorySlashTrimmingCases(string given, string expect) {
+ if (Path.DirectorySeparatorChar == '/')
+ expect = expect.Replace('\\', '/');
_task.OutputDir = given;
ExecuteExpectSuccess();
Assert.That(_task.LastResponseFile,