Skip to content

Commit 36cf519

Browse files
committed
Update tests to reflect logging changes
1 parent 350dd11 commit 36cf519

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/it/missing-property/verify.bsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ source(new File(basedir, "../../../src/it/lib.bsh").getPath());
3131
assertTrue("Should not exist: " + ijDir, !ijDir.exists());
3232

3333
buildLog = readFile(new File(basedir, "build.log"));
34-
assertTrue("Should contain 'Skipping populate-app':\n" + buildLog,
35-
buildLog.contains("Skipping populate-app"));
34+
assertTrue("Should contain 'skipping populate-app':\n" + buildLog,
35+
buildLog.contains("skipping populate-app"));

src/it/skip-copy-jars/verify.bsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ source(new File(basedir, "../../../src/it/lib.bsh").getPath());
3131
assertTrue("Should not exist: " + ijDir, !ijDir.exists());
3232

3333
buildLog = readFile(new File(basedir, "build.log"));
34-
assertTrue("Should contain 'Skipping populate-app':\n" + buildLog,
35-
buildLog.contains("Skipping populate-app"));
34+
assertTrue("Should contain 'skipping populate-app':\n" + buildLog,
35+
buildLog.contains("skipping populate-app"));

0 commit comments

Comments
 (0)