Skip to content

Commit

Permalink
Readibility improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 22, 2024
1 parent dc41f49 commit 43cdb0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/it/MINVOKER-351/src/it/minvoker-351/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
* under the License.
*/

throw new Exception("Special chars \tcharName=" + Character.getName(7) + (char) 7 + ";")
throw new Exception("Special chars \tcharName=" + Character.getName(7) + ": " + (char) 7)
2 changes: 1 addition & 1 deletion src/it/MINVOKER-351/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// we have a special chars in build.log
def buildLog = new File(basedir, 'target/it/minvoker-351/build.log').text
buildLog.contains('Special chars \tcharName=BEL\u0007;')
buildLog.contains('Special chars \tcharName=BEL: \u0007')


def surefireReport = new File(basedir, 'target/site/surefire-report.html').text
Expand Down

0 comments on commit 43cdb0b

Please sign in to comment.