Skip to content

Commit

Permalink
Test tweak to include check result for recently failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Sep 30, 2023
1 parent 8c21c2f commit d52551f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ void testExecuteLocalDependencies()
executor.schedule(() -> run_operation.process().destroy(), 2, TimeUnit.SECONDS);
assertThrows(ExitStatusException.class, run_operation::execute);

assertTrue(check_result.toString().contains("<p>Hello World Myapp</p>"));
assertTrue(check_result.toString().contains("<p>Hello World Myapp</p>"), check_result.toString());
} finally {
FileUtils.deleteDirectory(tmp);
}
Expand Down

0 comments on commit d52551f

Please sign in to comment.