From 3ec837076716cac5f58b3ff323cb35f3e340ae25 Mon Sep 17 00:00:00 2001 From: Daniel Villavicencio Date: Thu, 16 May 2024 20:08:24 -0700 Subject: [PATCH] Fixed a failing test regarding the Last Wish deleted encounter --- .../rivenbot/integration/InteractionControllerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/deahtstroke/rivenbot/integration/InteractionControllerTest.java b/src/test/java/com/deahtstroke/rivenbot/integration/InteractionControllerTest.java index e568413..10b9ec7 100644 --- a/src/test/java/com/deahtstroke/rivenbot/integration/InteractionControllerTest.java +++ b/src/test/java/com/deahtstroke/rivenbot/integration/InteractionControllerTest.java @@ -449,7 +449,7 @@ public void autocompleteRequestsForRaidMapAreSuccessful() .expectBody() .consumeWith(System.out::println) .jsonPath("$.type").isEqualTo(8) - .jsonPath("$.data.choices.size()").isEqualTo(6) + .jsonPath("$.data.choices.size()").isEqualTo(5) .jsonPath("$.data.choices").isArray() .returnResult().getResponseBody();