This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-integration-tests.git


The following commit(s) were added to refs/heads/master by this push:
     new 5023d06  SLING-8343 fix failing integration test related to recent 
healthcheck changes
5023d06 is described below

commit 5023d061e2fb726c290f84aac7dd0dca47e3d1c1
Author: Eric Norman <[email protected]>
AuthorDate: Thu Apr 11 15:16:03 2019 -0700

    SLING-8343 fix failing integration test related to recent healthcheck
    changes
---
 .../webapp/integrationtest/teleporter/ServicesPresentTest.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/teleporter/ServicesPresentTest.java
 
b/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/teleporter/ServicesPresentTest.java
index 52c728d..af69f7f 100644
--- 
a/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/teleporter/ServicesPresentTest.java
+++ 
b/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/teleporter/ServicesPresentTest.java
@@ -30,7 +30,7 @@ import static org.junit.Assert.fail;
 public class ServicesPresentTest {
 
     public static final String[] services = new String[] {
-            "org.apache.sling.hc.api.execution.HealthCheckExecutor"
+            "org.apache.felix.hc.api.execution.HealthCheckExecutor"
     };
 
     @Rule
@@ -41,7 +41,7 @@ public class ServicesPresentTest {
         BundleContext bundleContext = 
teleporter.getService(BundleContext.class);
         StringBuilder stringBuilder = new StringBuilder();
         for (String service : services) {
-            ServiceReference sr = bundleContext.getServiceReference(service);
+            ServiceReference<?> sr = 
bundleContext.getServiceReference(service);
             if (sr == null) {
                 stringBuilder.append("    ").append(service).append("\n");
             }

Reply via email to