Remove charset parameter check on textual resources

Closes gh-236
This commit is contained in:
Stephane Nicoll
2016-07-06 09:08:55 +02:00
parent 0caa01fd15
commit d8a0651ad4

View File

@@ -88,8 +88,6 @@ abstract class AbstractInitializrControllerIntegrationTests {
def actual = response.headers.getContentType()
assertTrue "Non compatible media-type, expected $expected, got $actual",
actual.isCompatibleWith(expected)
assertEquals 'All text content should be UTF-8 encoded',
'UTF-8', actual.getParameter('charset')
}