diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-12-18 22:02:31 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-12-18 22:02:31 +0100 |
| commit | 7bf831da62f00b7df2e847d6298012b17997285f (patch) | |
| tree | ecbbe98ffd91a684a32eab2919e7e4da94a4c531 /tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs | |
| parent | 12df192a31cc0e737d58d4cf517784249bfd9d0b (diff) | |
Fix tests
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/QuickConnect/QuickConnectManagerTests.cs | 4 |
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 c32d89ea5..30f72f595 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] |
