1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

[fix] misplaced quotation mark in assertion message

This commit is contained in:
Marcus Holl 2018-07-12 08:11:42 +02:00
parent 239e8cc054
commit c1927da33f

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)) }