From 6f5b20660ea22b7d85b04c72ad1b44b4529bbc6c Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 19 Nov 2015 15:50:05 -0800 Subject: [PATCH] Skip tests that rely on back slashes as part separator on Linux Fixes #191 --- .../DeveloperExceptionPageMiddlewareTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Diagnostics.Tests/DeveloperExceptionPageMiddlewareTest.cs b/test/Microsoft.AspNet.Diagnostics.Tests/DeveloperExceptionPageMiddlewareTest.cs index 95e1fb104b..8a4e23b87b 100644 --- a/test/Microsoft.AspNet.Diagnostics.Tests/DeveloperExceptionPageMiddlewareTest.cs +++ b/test/Microsoft.AspNet.Diagnostics.Tests/DeveloperExceptionPageMiddlewareTest.cs @@ -34,7 +34,7 @@ namespace Microsoft.AspNet.Diagnostics "TestFiles/SourceFile.txt" }; - if (!TestPlatformHelper.IsMono) + if (!TestPlatformHelper.IsLinux) { data.Add(@"TestFiles\SourceFile.txt"); }