aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/QuickConnect
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-12-19 09:56:24 +0100
committerGitHub <noreply@github.com>2023-12-19 09:56:24 +0100
commita1463c37fa64240fd094b63ab287b599847e1bdb (patch)
tree00c4441ffc5f1aa2f57422e1084907edb7f19068 /tests/Jellyfin.Server.Implementations.Tests/QuickConnect
parent053c3392f4b7583e5b6955738001661f1d0aee36 (diff)
parent7bf831da62f00b7df2e847d6298012b17997285f (diff)
Merge pull request #10604 from jellyfin/renovate/xunit-dotnet-monorepo
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/QuickConnect')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs
index c32d89ea5d..30f72f5957 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs
@@ -85,10 +85,10 @@ namespace Jellyfin.Server.Implementations.Tests.QuickConnect
}
[Fact]
- public void AuthorizeRequest_QuickConnectUnavailable_ThrowsAuthenticationException()
+ public async Task AuthorizeRequest_QuickConnectUnavailable_ThrowsAuthenticationException()
{
_config.QuickConnectAvailable = false;
- Assert.ThrowsAsync<AuthenticationException>(() => _quickConnectManager.AuthorizeRequest(Guid.Empty, string.Empty));
+ await Assert.ThrowsAsync<AuthenticationException>(() => _quickConnectManager.AuthorizeRequest(Guid.Empty, string.Empty));
}
[Fact]