From 3b71e0d929f52aaa858223218c353e95ecaac7fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Mon, 2 Nov 2015 20:55:33 +0100 Subject: Fix hardcoded Utilities.IsWindows property This could probably use the new RuntimeInformation API in the future, but since this would require touching project.json and bringing in a new dependency I decided to go with the simple fix for now :) --- tests/src/Common/CoreCLRTestLibrary/Utilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/src/Common') diff --git a/tests/src/Common/CoreCLRTestLibrary/Utilities.cs b/tests/src/Common/CoreCLRTestLibrary/Utilities.cs index 0ab52c5406..b5fb796835 100644 --- a/tests/src/Common/CoreCLRTestLibrary/Utilities.cs +++ b/tests/src/Common/CoreCLRTestLibrary/Utilities.cs @@ -76,7 +76,7 @@ namespace TestLibrary [SecuritySafeCritical] get { - return true; + return Path.DirectorySeparatorChar == '\\'; } } -- cgit v1.2.3