aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs
diff options
context:
space:
mode:
authorartiume <siderite@gmail.com>2020-02-13 13:09:50 -0500
committerGitHub <noreply@github.com>2020-02-13 13:09:50 -0500
commit63f13df6fc0c01e09b867d19ca286e754655cfdd (patch)
treef70eac01399eb3c84bf2e4d0115d7bd898b83dd6 /tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs
parent40ad6f843fddab81bdaf26af4e6530ce4529eebf (diff)
parentcf2626428c0d4755662855fe6c3e4f439c909de9 (diff)
Merge pull request #17 from jellyfin/master
10.5
Diffstat (limited to 'tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs')
-rw-r--r--tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs b/tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs
index a2f5c2501..3b3d03c8b 100644
--- a/tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs
+++ b/tests/Jellyfin.Api.Tests/Auth/CustomAuthenticationHandlerTests.cs
@@ -83,7 +83,7 @@ namespace Jellyfin.Api.Tests.Auth
a => a.Authenticate(
It.IsAny<HttpRequest>(),
It.IsAny<AuthenticatedAttribute>()))
- .Returns((User)null);
+ .Returns((User?)null);
var authenticateResult = await _sut.AuthenticateAsync();