Merge pull request #201 from marcusholl/pr/fixQuotationMark

[fix] misplaced quotation mark in assertion message
This commit is contained in:
Christopher Fenner
2018-07-12 09:21:30 +02:00
committed by GitHub
+1 -1
View File
@@ -57,7 +57,7 @@ class JenkinsLoggingRule implements TestRule {
throw caught
}
expected.each { substring -> assertThat("Substring '${substring} not contained in log.'",
expected.each { substring -> assertThat("Substring '${substring}' not contained in log.",
log,
containsString(substring)) }