Fix all warnings

This commit is contained in:
jvyden 2022-05-01 13:44:41 -04:00
commit 396477c05d
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
39 changed files with 84 additions and 110 deletions

View file

@ -47,7 +47,7 @@ public class AuthenticationTests : LighthouseServerTest
LoginResult loginResult = await this.Authenticate();
HttpResponseMessage response = await this.AuthenticatedRequest("/LITTLEBIGPLANETPS3_XML/enterLevel/420", loginResult.AuthTicket);
string responseContent = await response.Content.ReadAsStringAsync();
await response.Content.ReadAsStringAsync();
Assert.False(response.StatusCode == HttpStatusCode.Forbidden);
}
@ -59,4 +59,4 @@ public class AuthenticationTests : LighthouseServerTest
Assert.False(response.IsSuccessStatusCode);
Assert.True(response.StatusCode == HttpStatusCode.Forbidden);
}
}
}