mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
switch two incorrectly used variables
This commit is contained in:
parent
65e9a705d3
commit
d00fd7ca82
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue