switch two incorrectly used variables

This commit is contained in:
dkanada 2020-01-13 15:43:06 +09:00
parent 65e9a705d3
commit d00fd7ca82

View file

@ -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
{