We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5405bdf commit d728e7fCopy full SHA for d728e7f
tests/ImageSharp.Web.Tests/Caching/PhysicialFileSystemCacheTests.cs
@@ -31,9 +31,9 @@ public void FilePathMatchesReference()
31
[InlineData("cacheFolder", null, "/Users/WebRoot", null, "/Users/WebRoot/cacheFolder")]
32
[InlineData("cacheFolder", "../Temp", null, "/Users/this/a/root", "/Users/this/a/Temp/cacheFolder")]
33
#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")]
+ [InlineData("cacheFolder", "C:/Temp", null, null, "C:\\Temp\\cacheFolder")]
+ [InlineData("cacheFolder", null, "C:/WebRoot", null, "C:\\WebRoot\\cacheFolder")]
+ [InlineData("cacheFolder", "../Temp", null, "C:/this/a/root", "C:\\this\\a\\Temp\\cacheFolder")]
37
#endif
38
public void CacheRootFromOptions(string cacheFolder, string cacheRoot, string webRootPath, string contentRootPath, string expected)
39
{
0 commit comments