Skip to content

Commit e8e7281

Browse files
committed
Don’t expect a charset attribute on a text/css Content-Type
Following the encoding change made in 428a10a, the character encoding of a response is no longer forced. See spring-projectsgh-5459
1 parent e71cea5 commit e8e7281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-samples/spring-boot-sample-web-static/src/test/java/sample/web/staticcontent/SampleWebStaticApplicationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void testCss() throws Exception {
6262
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK);
6363
assertThat(entity.getBody()).contains("body");
6464
assertThat(entity.getHeaders().getContentType())
65-
.isEqualTo(MediaType.valueOf("text/css;charset=UTF-8"));
65+
.isEqualTo(MediaType.valueOf("text/css"));
6666
}
6767

6868
}

0 commit comments

Comments
 (0)