fix username to uuid lookup tests

This commit is contained in:
Lee 2024-04-11 00:28:54 +01:00
parent bd09539732
commit 944000ab1a

@ -54,7 +54,7 @@ class PlayerControllerTests {
@Test
public void ensurePlayerUsernameToUuidLookupFailure() throws Exception {
mockMvc.perform(get("/player/uuid/" + testPlayer)
mockMvc.perform(get("/player/uuid/" + testInvalidPlayer)
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isNotFound());