Skip tests that rely on back slashes as part separator on Linux

Fixes #191
This commit is contained in:
Pranav K 2015-11-19 15:50:05 -08:00
parent f468d6789f
commit 6f5b20660e
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ namespace Microsoft.AspNet.Diagnostics
"TestFiles/SourceFile.txt"
};
if (!TestPlatformHelper.IsMono)
if (!TestPlatformHelper.IsLinux)
{
data.Add(@"TestFiles\SourceFile.txt");
}