aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2023-12-18 22:02:31 +0100
committerBond_009 <bond.009@outlook.com>2023-12-18 22:02:31 +0100
commit7bf831da62f00b7df2e847d6298012b17997285f (patch)
treeecbbe98ffd91a684a32eab2919e7e4da94a4c531 /tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs
parent12df192a31cc0e737d58d4cf517784249bfd9d0b (diff)
Fix tests
Diffstat (limited to 'tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs')
-rw-r--r--tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs b/tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs
index 0254a1ec6..5034ad3c7 100644
--- a/tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs
+++ b/tests/Jellyfin.Api.Tests/Controllers/ImageControllerTests.cs
@@ -27,7 +27,7 @@ public static class ImageControllerTests
[InlineData(null)]
[InlineData("")]
[InlineData("text/html")]
- public static void TryGetImageExtensionFromContentType_InValid_False(string contentType)
+ public static void TryGetImageExtensionFromContentType_InValid_False(string? contentType)
{
Assert.False(ImageController.TryGetImageExtensionFromContentType(contentType, out var ex));
Assert.Null(ex);