chore: bump org.springframework.boot:spring-boot-starter-parent from 3.3.5 to 3.4.0 (#1962)

This commit is contained in:
dependabot[bot]
2024-12-16 20:16:10 +01:00
committed by GitHub
parent 6d90852c1f
commit a95213757d
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version> <version>3.4.0</version>
</parent> </parent>
<groupId>org.owasp.webgoat</groupId> <groupId>org.owasp.webgoat</groupId>

View File

@ -78,7 +78,7 @@ public class ShopEndpointTest extends LessonTest {
@Test @Test
public void fetchAllTheCouponsShouldContainGetItForFree() throws Exception { public void fetchAllTheCouponsShouldContainGetItForFree() throws Exception {
mockMvc mockMvc
.perform(MockMvcRequestBuilders.get("/clientSideFiltering/challenge-store/coupons/")) .perform(MockMvcRequestBuilders.get("/clientSideFiltering/challenge-store/coupons"))
.andExpect(jsonPath("$.codes[3].code", is("get_it_for_free"))); .andExpect(jsonPath("$.codes[3].code", is("get_it_for_free")));
} }
} }