diff --git a/src/test/java/suite/basic/BasicTest.java b/src/test/java/suite/basic/BasicTest.java index c7af326..4d442d2 100644 --- a/src/test/java/suite/basic/BasicTest.java +++ b/src/test/java/suite/basic/BasicTest.java @@ -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); } }