diff --git a/src/test/java/guru/springframework/spring6restmvc/controller/BeerControllerIT.java b/src/test/java/guru/springframework/spring6restmvc/controller/BeerControllerIT.java
index 60abe26cc..02860b45e 100644
--- a/src/test/java/guru/springframework/spring6restmvc/controller/BeerControllerIT.java
+++ b/src/test/java/guru/springframework/spring6restmvc/controller/BeerControllerIT.java
@@ -58,7 +58,7 @@ void setUp() {
     }
 
     @Test
-    void tesListBeersByStyleAndNameShowInventoryTrue() throws Exception {
+    void testListBeersByStyleAndNameShowInventoryTrue() throws Exception {
         mockMvc.perform(get(BeerController.BEER_PATH)
                         .queryParam("beerName", "IPA")
                         .queryParam("beerStyle", BeerStyle.IPA.name())
@@ -69,7 +69,7 @@ void tesListBeersByStyleAndNameShowInventoryTrue() throws Exception {
     }
 
     @Test
-    void tesListBeersByStyleAndNameShowInventoryFalse() throws Exception {
+    void testListBeersByStyleAndNameShowInventoryFalse() throws Exception {
         mockMvc.perform(get(BeerController.BEER_PATH)
                         .queryParam("beerName", "IPA")
                         .queryParam("beerStyle", BeerStyle.IPA.name())
@@ -89,7 +89,7 @@ void tesListBeersByStyleAndName() throws Exception {
     }
 
     @Test
-    void tesListBeersByStyle() throws Exception {
+    void testListBeersByStyle() throws Exception {
         mockMvc.perform(get(BeerController.BEER_PATH)
                         .queryParam("beerStyle", BeerStyle.IPA.name()))
                 .andExpect(status().isOk())
@@ -97,7 +97,7 @@ void tesListBeersByStyle() throws Exception {
     }
 
     @Test
-    void tesListBeersByName() throws Exception {
+    void testListBeersByName() throws Exception {
         mockMvc.perform(get(BeerController.BEER_PATH)
                 .queryParam("beerName", "IPA"))
                 .andExpect(status().isOk())