mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fix error in test preventing Moq update (#10096)
This commit is contained in:
parent
f42abf970a
commit
084e0bf450
@ -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[]
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user