mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-18 01:02:19 +02:00
Fix error in test preventing Moq update (#10096)
This commit is contained in:
parent
f42abf970a
commit
084e0bf450
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ namespace Jellyfin.Api.Tests.Auth.DefaultAuthorizationPolicy
|
|||
|
||||
_userManagerMock
|
||||
.Setup(u => u.GetUserById(It.IsAny<Guid>()))
|
||||
.Returns<User>(null);
|
||||
.Returns<User?>(null);
|
||||
|
||||
var claims = new[]
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue