mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-17 11:43:44 +01:00
Fix error in test preventing Moq update (#10096)
This commit is contained in:
@@ -66,7 +66,7 @@ namespace Jellyfin.Api.Tests.Auth.DefaultAuthorizationPolicy
|
|||||||
|
|
||||||
_userManagerMock
|
_userManagerMock
|
||||||
.Setup(u => u.GetUserById(It.IsAny<Guid>()))
|
.Setup(u => u.GetUserById(It.IsAny<Guid>()))
|
||||||
.Returns<User>(null);
|
.Returns<User?>(null);
|
||||||
|
|
||||||
var claims = new[]
|
var claims = new[]
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user