aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.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.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs
parent12df192a31cc0e737d58d4cf517784249bfd9d0b (diff)
Fix tests
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs
index ebd3a3891..e463d838e 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/SessionManager/SessionManagerTests.cs
@@ -21,7 +21,7 @@ public class SessionManagerTests
[Theory]
[InlineData("", typeof(ArgumentException))]
[InlineData(null, typeof(ArgumentNullException))]
- public async Task GetAuthorizationToken_Should_ThrowException(string deviceId, Type exceptionType)
+ public async Task GetAuthorizationToken_Should_ThrowException(string? deviceId, Type exceptionType)
{
await using var sessionManager = new Emby.Server.Implementations.Session.SessionManager(
NullLogger<Emby.Server.Implementations.Session.SessionManager>.Instance,