Fix GetPage Params case issue

Fixes #5946
This commit is contained in:
Bjørn Erik Pedersen 2019-11-21 19:45:03 +01:00
parent 628efd6e29
commit cd07e6d57b
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F
4 changed files with 48 additions and 6 deletions

View file

@ -743,7 +743,7 @@ func (th testHelper) assertFileContent(filename string, matches ...string) {
content := readDestination(th, th.Fs, filename)
for _, match := range matches {
match = th.replaceDefaultContentLanguageValue(match)
th.Assert(strings.Contains(content, match), qt.Equals, true)
th.Assert(strings.Contains(content, match), qt.Equals, true, qt.Commentf(content))
}
}