* Linux FS is case sensitive

This commit is contained in:
ryanbrandenburg 2016-02-25 16:51:42 -08:00
parent b8e77e91d1
commit 00bab92257
1 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
public MvcTestFixture()
#if DNXCORE50
: this("../../../../../Websites/")
: this(Path.Combine("..", "..", "..", "..", "..", "WebSites"))
#else
: this("../../../Websites/")
: this(Path.Combine("..", "..", "..", "WebSites"))
#endif
{
}