mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-19 11:02:26 +00:00
switch two incorrectly used variables
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user