diff --git a/src/main/resources/generator/server/springboot/mvc/internationalized-errors/test/ApplicationErrorsHandlerIT.java.mustache b/src/main/resources/generator/server/springboot/mvc/internationalized-errors/test/ApplicationErrorsHandlerIT.java.mustache index dc839c15a39..be0c341cff1 100644 --- a/src/main/resources/generator/server/springboot/mvc/internationalized-errors/test/ApplicationErrorsHandlerIT.java.mustache +++ b/src/main/resources/generator/server/springboot/mvc/internationalized-errors/test/ApplicationErrorsHandlerIT.java.mustache @@ -32,6 +32,6 @@ class {{ baseName }}ErrorsHandlerIT { .perform(get("/api/errors/bad-request").locale(Locale.FRANCE)) .andExpect(status().is4xxClientError()) .andExpect(jsonPath("title").value("Bad request")) - .andExpect(jsonPath("detail").value("Votre requête n'est pas valide: 400")); + .andExpect(jsonPath("detail").value("Votre requête n'est pas valide : 400")); } }