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

rombert pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-samples.git

commit e6c3ad0f39b79369e8addfb058463e86913e525d
Author: Robert Munteanu <romb...@apache.org>
AuthorDate: Tue Sep 2 13:43:54 2014 +0000

    SLING-3888 - Move groovy extension bundle to contrib/scripting
    
    Use org.apache.sling.api bundle instead of the groovy bundle in
    SampleJUnitTest .
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1621996 
13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/hc/samples/junit/SampleJUnitTest.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/sling/hc/samples/junit/SampleJUnitTest.java 
b/src/main/java/org/apache/sling/hc/samples/junit/SampleJUnitTest.java
index d0f712a..662b7f5 100644
--- a/src/main/java/org/apache/sling/hc/samples/junit/SampleJUnitTest.java
+++ b/src/main/java/org/apache/sling/hc/samples/junit/SampleJUnitTest.java
@@ -43,8 +43,9 @@ public class SampleJUnitTest {
     }
     
     @Test
-    public void checkGroovyBundleActive() {
-        final String symbolicName = "org.apache.sling.extensions.groovy";
+    public void checkSlingAPIBundleActive() {
+        // TODO - adjust
+        final String symbolicName = "org.apache.sling.api";
         for(Bundle b : bundleContext.getBundles()) {
             if(symbolicName.equals(b.getSymbolicName())) {
                 assertEquals("Expecting " + symbolicName + " to be active", 
Bundle.ACTIVE, b.getState());

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <commits@sling.apache.org>.

Reply via email to