Skip to content

Commit

Permalink
Fix failing CamelBeansUnremovableTest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Mar 8, 2024
1 parent 47d22ce commit 3b0cebc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@

public class CamelBeansUnremovableTest {

static final String RESSOURCE_PATH = "org/apache/camel/quarkus/core/runtime/"
static final String RESOURCE_PATH = "META-INF/org/apache/camel/quarkus/core/runtime/"
+ CamelBeansUnremovableTest.class.getSimpleName();

@RegisterExtension
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addAsResource("custom-component.json", RESSOURCE_PATH + "/custom-component.json")
.addAsResource("custom-dataformat.json", RESSOURCE_PATH + "/custom-dataformat.json")
.addAsResource("custom-language.json", RESSOURCE_PATH + "/custom-language.json"));
.addAsResource("custom-component.json", RESOURCE_PATH + "/custom-component.json")
.addAsResource("custom-dataformat.json", RESOURCE_PATH + "/custom-dataformat.json")
.addAsResource("custom-language.json", RESOURCE_PATH + "/custom-language.json"));

@Inject
CamelContext context;
Expand Down

0 comments on commit 3b0cebc

Please sign in to comment.