浏览代码

ignore drive name in windows environments

dkanada 5 年之前
父节点
当前提交
d461f46bef
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/Jellyfin.Server.Implementations.Tests/IO/ManagedFileSystemTests.cs

+ 1 - 1
tests/Jellyfin.Server.Implementations.Tests/IO/ManagedFileSystemTests.cs

@@ -31,7 +31,7 @@ namespace Jellyfin.Server.Implementations.Tests.IO
 
             if (MediaBrowser.Common.System.OperatingSystem.Id == OperatingSystemId.Windows)
             {
-                var expectedWindowsPath = "d:" + expectedAbsolutePath.Replace('/', '\\');
+                var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\').Split(':')[1];
                 Assert.Equal(expectedWindowsPath, generatedPath);
             }
             else