You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by da...@apache.org on 2018/11/15 11:04:17 UTC

[sling-slingfeature-maven-plugin] branch master updated: Fix it-test that fails since the analyser output changed.

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

davidb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 66eadd2  Fix it-test that fails since the analyser output changed.
66eadd2 is described below

commit 66eadd28e1454de6609df11505da01b7dba3547a
Author: David Bosschaert <bo...@adobe.com>
AuthorDate: Thu Nov 15 11:03:53 2018 +0000

    Fix it-test that fails since the analyser output changed.
---
 src/it/analyzer-apiregions-errors-detected/verify.bsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/it/analyzer-apiregions-errors-detected/verify.bsh b/src/it/analyzer-apiregions-errors-detected/verify.bsh
index 8f87210..c95430d 100644
--- a/src/it/analyzer-apiregions-errors-detected/verify.bsh
+++ b/src/it/analyzer-apiregions-errors-detected/verify.bsh
@@ -24,7 +24,7 @@ import org.codehaus.plexus.util.*;
         File file = new File(basedir, "build.log");
         String log = FileUtils.fileRead(file);
 
-        if (log.indexOf("Bundle 'org.apache.aries.versioning:org.apache.aries.versioning.checker:0.3.1' (defined in feature 'org.apache.sling:slingfeature-maven-plugin-test:1.0.0-SNAPSHOT') declares 'org.apache.aries.versioning.check' in the 'Export-Package' header, enlisted in the 'my-global' region, which requires 'org.objectweb.asm' package that is in the 'my-deprecated' region") < 0) {
+        if (log.indexOf("Bundle 'org.apache.aries.versioning:org.apache.aries.versioning.checker:0.3.1' (defined in feature 'org.apache.sling:slingfeature-maven-plugin-test:1.0.0-SNAPSHOT') declares 'org.apache.aries.versioning.check' in the 'Export-Package' header, enlisted in the 'my-global' region, which uses 'org.objectweb.asm' package that is in the 'my-deprecated' region") < 0) {
             System.out.println( "FAILED!" );
             return false;
         }