You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/01/05 11:30:27 UTC

[sling-org-apache-sling-karaf-integration-tests] branch master updated: SLING-3027 Improve Launchpad Karaf Features

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 539b0a1  SLING-3027 Improve Launchpad Karaf Features
539b0a1 is described below

commit 539b0a124035969b7c57e7df205049c5f59b847a
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Tue Jan 5 12:29:12 2021 +0100

    SLING-3027 Improve Launchpad Karaf Features
    
    update Groovy (now fragment bundles)
---
 .../apache/sling/karaf/tests/bootstrap/SlingScriptingGroovyIT.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingGroovyIT.java b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingGroovyIT.java
index bb44e20..36347b5 100644
--- a/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingGroovyIT.java
+++ b/src/test/java/org/apache/sling/karaf/tests/bootstrap/SlingScriptingGroovyIT.java
@@ -62,14 +62,14 @@ public class SlingScriptingGroovyIT extends KarafTestSupport {
     public void testGroovyJson() {
         final Bundle bundle = findBundle("groovy-json");
         assertNotNull(bundle);
-        assertEquals(Bundle.ACTIVE, bundle.getState());
+        assertEquals(Bundle.RESOLVED, bundle.getState());
     }
 
     @Test
     public void testGroovyTemplates() {
         final Bundle bundle = findBundle("groovy-templates");
         assertNotNull(bundle);
-        assertEquals(Bundle.ACTIVE, bundle.getState());
+        assertEquals(Bundle.RESOLVED, bundle.getState());
     }
 
 }