src/main/java/org/apache/sling/launchpad/webapp/integrationtest/VersionInfoServletTest.java [119:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void waitUntilSlingIsStable() throws HttpException, IOException, InterruptedException {
        for (int i = 0; i < 10; i++) {
            Thread.sleep(1000);
            if (testClient.get(HTTP_BASE_URL + "/.json") == 200) {
                return;
            }
        }
        fail("Sling instance fails to respond with status 200");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/launchpad/webapp/integrationtest/VersionParameterTest.java [77:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void waitUntilSlingIsStable() throws HttpException, IOException, InterruptedException {
        for (int i = 0; i < 10; i++) {
            Thread.sleep(1000);
            if (testClient.get(HTTP_BASE_URL + "/.json") == 200) {
                return;
            }
        }
        fail("Sling instance fails to respond with status 200");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



