mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 18:53:27 +01:00
Fix xUnit1030: Do not call ConfigureAwait in test method
This commit is contained in:
@@ -23,7 +23,7 @@ namespace Jellyfin.Server.Integration.Tests.Middleware
|
||||
AllowAutoRedirect = false
|
||||
});
|
||||
|
||||
var response = await client.GetAsync("robots.txt").ConfigureAwait(false);
|
||||
var response = await client.GetAsync("robots.txt");
|
||||
|
||||
Assert.Equal(HttpStatusCode.Redirect, response.StatusCode);
|
||||
Assert.Equal("web/robots.txt", response.Headers.Location?.ToString());
|
||||
|
||||
Reference in New Issue
Block a user