Fix ShouldReturnForbiddenWhenNotAuthenticated tests

This commit is contained in:
jvyden 2021-11-19 00:45:59 -05:00
commit 0ada6efe45
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -59,7 +59,7 @@ namespace LBPUnion.ProjectLighthouse.Tests
[DatabaseFact]
public async Task ShouldReturnForbiddenWhenNotAuthenticated()
{
HttpResponseMessage response = await this.Client.GetAsync("/LITTLEBIGPLANETPS3_XML/eula");
HttpResponseMessage response = await this.Client.GetAsync("/LITTLEBIGPLANETPS3_XML/announce");
Assert.False(response.IsSuccessStatusCode);
Assert.True(response.StatusCode == HttpStatusCode.Forbidden);
}