diff --git a/Chutzpah/FileProbe.cs b/Chutzpah/FileProbe.cs index 92c5d629..b711a616 100644 --- a/Chutzpah/FileProbe.cs +++ b/Chutzpah/FileProbe.cs @@ -163,7 +163,7 @@ public IEnumerable FindScriptFiles(ChutzpahTestSettingsFile chutzpahTe // The path we assume default to the chuzpah.json directory if the Path property is not set var testPath = string.IsNullOrEmpty(pathSettings.Path) ? pathSettings.SettingsFileDirectory : pathSettings.Path; - testPath = UrlBuilder.NormalizeFilePath(testPath); + testPath = UrlBuilder.NormalizeFilePath(testPath, false); testPath = testPath != null ? Path.Combine(pathSettings.SettingsFileDirectory, testPath) : null; // If a file path is given just return that file @@ -283,4 +283,4 @@ private string GetReferenceFileContentAndSetHash(ReferencedFile file, ChutzpahTe return text; } } -} \ No newline at end of file +}