switch two incorrectly used variables

pull/2268/head
dkanada 5 years ago
parent 65e9a705d3
commit d00fd7ca82

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

Loading…
Cancel
Save