Skip to content

Commit

Permalink
Merge pull request #564 from Joseph-Cass/fix-timeoutConfigTest
Browse files Browse the repository at this point in the history
Fix TimeoutConfigTest bug
  • Loading branch information
Azquelt authored Jun 30, 2020
2 parents 5fb645a + 7dc9d3d commit 55c3ace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static WebArchive create() {
.set(TimeoutConfigBean.class, "serviceBoth", Timeout.class, "unit", "MILLIS");

JavaArchive jar = ShrinkWrap.create(JavaArchive.class, "ftTimeoutConfig.jar")
.addClasses(TimeoutConfigBean.class)
.addClasses(TimeoutConfigBean.class, CompletableFutureHelper.class)
.addPackage(Packages.UTILS)
.addAsManifestResource(config, "microprofile-config.properties")
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
Expand Down

0 comments on commit 55c3ace

Please sign in to comment.