Skip to content

Commit d728e7f

Browse files
committed
try fix windows tests
1 parent 5405bdf commit d728e7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ImageSharp.Web.Tests/Caching/PhysicialFileSystemCacheTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public void FilePathMatchesReference()
3131
[InlineData("cacheFolder", null, "/Users/WebRoot", null, "/Users/WebRoot/cacheFolder")]
3232
[InlineData("cacheFolder", "../Temp", null, "/Users/this/a/root", "/Users/this/a/Temp/cacheFolder")]
3333
#elif Windows
34-
[InlineData("cacheFolder", "C:/Temp", null, null, "C:/Temp/cacheFolder")]
35-
[InlineData("cacheFolder", null, "C:/WebRoot", null, "C:/WebRoot/cacheFolder")]
36-
[InlineData("cacheFolder", "../Temp", null, "C:/this/a/root", "C:/this/a/Temp/cacheFolder")]
34+
[InlineData("cacheFolder", "C:/Temp", null, null, "C:\\Temp\\cacheFolder")]
35+
[InlineData("cacheFolder", null, "C:/WebRoot", null, "C:\\WebRoot\\cacheFolder")]
36+
[InlineData("cacheFolder", "../Temp", null, "C:/this/a/root", "C:\\this\\a\\Temp\\cacheFolder")]
3737
#endif
3838
public void CacheRootFromOptions(string cacheFolder, string cacheRoot, string webRootPath, string contentRootPath, string expected)
3939
{

0 commit comments

Comments
 (0)