404 para pedido inexistente quando logado como admin

@Test
public void findByIdShouldReturn404WhenOrderDoesntExistLoggedAsAdmin() {

    nonExistingId = 999L;

    given()
            .header("Content-type", "application/json")
            .header("Authorization", "Bearer " + adminToken)
            .accept(ContentType.JSON)
            .when()
            .get("/orders/{id}", nonExistingId)
            .then()
            .statusCode(404);
}

Atualizado