diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-12-19 09:56:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-19 09:56:24 +0100 |
| commit | a1463c37fa64240fd094b63ab287b599847e1bdb (patch) | |
| tree | 00c4441ffc5f1aa2f57422e1084907edb7f19068 /tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs | |
| parent | 053c3392f4b7583e5b6955738001661f1d0aee36 (diff) | |
| parent | 7bf831da62f00b7df2e847d6298012b17997285f (diff) | |
Merge pull request #10604 from jellyfin/renovate/xunit-dotnet-monorepo
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs index 1c35eb3f50..d1be07aa22 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Library/PathExtensionsTests.cs @@ -83,7 +83,7 @@ namespace Jellyfin.Server.Implementations.Tests.Library [InlineData(@"\home/jeff\myfile.mkv", '\\', @"\home\jeff\myfile.mkv")] [InlineData(@"\home/jeff\myfile.mkv", '/', "/home/jeff/myfile.mkv")] [InlineData("", '/', "")] - public void NormalizePath_SpecifyingSeparator_Normalizes(string path, char separator, string expectedPath) + public void NormalizePath_SpecifyingSeparator_Normalizes(string? path, char separator, string? expectedPath) { Assert.Equal(expectedPath, path.NormalizePath(separator)); } |
