[skip ci] Remove .NET 5 checks

This commit is contained in:
jvyden 2022-01-19 09:09:38 -05:00
commit 7a98d0558b
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 0 additions and 8 deletions

View file

@ -15,11 +15,7 @@ public class AuthenticationTests : LighthouseServerTest
{
HttpResponseMessage response = await this.Client.PostAsync("/LITTLEBIGPLANETPS3_XML/login", null!);
Assert.False(response.IsSuccessStatusCode);
#if NET6_0_OR_GREATER
Assert.True(response.StatusCode == HttpStatusCode.BadRequest);
#else
Assert.True(response.StatusCode == HttpStatusCode.NotAcceptable);
#endif
}
[DatabaseFact]