diff --git a/server-info-spring-web/src/test/kotlin/ru/touchin/server/info/advices/ServerInfoHeaderMvcTest.kt b/server-info-spring-web/src/test/kotlin/ru/touchin/server/info/advices/ServerInfoHeaderMvcTest.kt index 8aa7b67..29bb77e 100644 --- a/server-info-spring-web/src/test/kotlin/ru/touchin/server/info/advices/ServerInfoHeaderMvcTest.kt +++ b/server-info-spring-web/src/test/kotlin/ru/touchin/server/info/advices/ServerInfoHeaderMvcTest.kt @@ -42,7 +42,6 @@ internal class ServerInfoHeaderMvcTest { .perform(MockMvcRequestBuilders.get("/test")) .andDo(MockMvcResultHandlers.print()) .andExpect(MockMvcResultMatchers.status().isOk) - .andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON_VALUE)) .andExpect(MockMvcResultMatchers.header().exists("X-App-Build-Version")) }