Skip to content

Commit

Permalink
Added more logging for failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasm-ttd committed Feb 29, 2024
1 parent f8b5699 commit 99a6ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/suite/basic/BasicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void testHealthcheck(App app, String name) {
try {
assertThat(app.isHealthy()).isTrue().withFailMessage("App '" + app.getName() + "' on URL: '" + app.getBaseUrl() + "' is not healthy");
} catch (Exception e) {
Assertions.fail("Failed to get health check for " + app.getName(), e);
Assertions.fail("Failed to get health check for " + app.getName() + "on URL: " + app.getBaseUrl(), e);
}
}

Expand Down

0 comments on commit 99a6ef2

Please sign in to comment.