mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
move the split usage to the proper location
This commit is contained in:
@@ -31,8 +31,8 @@ namespace Jellyfin.Server.Implementations.Tests.IO
|
||||
|
||||
if (MediaBrowser.Common.System.OperatingSystem.Id == OperatingSystemId.Windows)
|
||||
{
|
||||
var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\').Split(':')[1];
|
||||
Assert.Equal(expectedWindowsPath, generatedPath);
|
||||
var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\');
|
||||
Assert.Equal(expectedWindowsPath, generatedPath.Split(':')[1]);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user