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

ffang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new dfe4a10  [CAMEL-13664]use pre-defined property instead of hardcoded 
string
dfe4a10 is described below

commit dfe4a10e5f7e0e0e3546c409254a3f3c2272de90
Author: Freeman Fang <freeman.f...@gmail.com>
AuthorDate: Thu Jun 20 16:25:09 2019 -0400

    [CAMEL-13664]use pre-defined property instead of hardcoded string
---
 .../src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java
 
b/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java
index 3fe4d8a..690e1f9 100644
--- 
a/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java
+++ 
b/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java
@@ -122,7 +122,7 @@ public abstract class AbstractFeatureTest {
                 .set("Bundle-ManifestVersion", "2")
                 .set("Bundle-SymbolicName", name)
                 .set("Bundle-Version", "1.0.0")
-                .set("DynamicImport-Package", "*");
+                .set(Constants.DYNAMICIMPORT_PACKAGE, "*");
         consumer.accept(bundle);
         Bundle answer = bundleContext.installBundle(name, bundle.build());
 

Reply via email to