diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-12-18 22:02:31 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-12-18 22:02:31 +0100 |
| commit | 7bf831da62f00b7df2e847d6298012b17997285f (patch) | |
| tree | ecbbe98ffd91a684a32eab2919e7e4da94a4c531 /tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs | |
| parent | 12df192a31cc0e737d58d4cf517784249bfd9d0b (diff) | |
Fix tests
Diffstat (limited to 'tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs')
| -rw-r--r-- | tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs b/tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs index 62d60e5a4b..5029a87933 100644 --- a/tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs +++ b/tests/Jellyfin.Naming.Tests/Video/CleanDateTimeTests.cs @@ -52,9 +52,8 @@ namespace Jellyfin.Naming.Tests.Video [InlineData("My Movie 2013-12-09", "My Movie 2013-12-09", null)] [InlineData("My Movie 20131209", "My Movie 20131209", null)] [InlineData("My Movie 2013-12-09 2013", "My Movie 2013-12-09", 2013)] - [InlineData(null, null, null)] [InlineData("", "", null)] - public void CleanDateTimeTest(string input, string expectedName, int? expectedYear) + public void CleanDateTimeTest(string input, string? expectedName, int? expectedYear) { input = Path.GetFileName(input); |
