2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 00:07:12 -07:00

Test tweak to include check result for recently failing test

This commit is contained in:
Geert Bevin 2023-09-30 18:26:20 -04:00
parent 8c21c2f909
commit d52551f3b7

View file

@ -546,7 +546,7 @@ public class TestCreateRife2Operation {
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);
}