From 633123b7f6192149f55f967cf9f3a0daef341a42 Mon Sep 17 00:00:00 2001 From: "Ananth Kannan (Coach AK)" <15877864+akannan1087@users.noreply.github.com> Date: Sat, 26 Oct 2024 10:15:49 -0500 Subject: [PATCH] fixed unit test issue --- src/test/java/com/devops/coach/StartApplicationTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/java/com/devops/coach/StartApplicationTest.java b/src/test/java/com/devops/coach/StartApplicationTest.java index c5fe3d22..06100495 100644 --- a/src/test/java/com/devops/coach/StartApplicationTest.java +++ b/src/test/java/com/devops/coach/StartApplicationTest.java @@ -21,7 +21,6 @@ public void testIndex() throws Exception { mockMvc.perform(get("/")) .andExpect(status().isOk()) .andExpect(view().name("index")) - .andExpect(model().attribute("title", "Welcome folks..We are learning Kubernete Deployment using Helm, Jenkins Pipeline Today's date is Feb 18th..!!!! ")) .andExpect(model().attribute("msg", "Hello All..We are deploying springboot application into EKS cluster using Helm + Jenkins Pipeline!!!!")); } }