소스 검색

switch two incorrectly used variables

dkanada 5 년 전
부모
커밋
d00fd7ca82
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tests/Jellyfin.Server.Implementations.Tests/IO/ManagedFileSystemTests.cs

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

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