This is an automated email from the ASF dual-hosted git repository. dblevins pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 89fe71f08b480af7ba15730448a48adec590283e Author: David Blevins <[email protected]> AuthorDate: Fri May 13 17:37:21 2022 -0700 Do not use update() by default --- .../org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java index 30f75748be..89edefddd7 100644 --- a/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java +++ b/itests/microprofile-jwt-itests/src/test/java/org/apache/tomee/microprofile/jwt/itest/InvalidSignatureTest.java @@ -67,7 +67,7 @@ public class InvalidSignatureTest { .add("webapps/test/WEB-INF/beans.xml", "") .add("webapps/test/WEB-INF/lib/app.jar", appJar) .watch("org.apache.tomee.microprofile.jwt.", "\n", output::add) - .update() +// .update() .build(); final WebClient webClient = createWebClient(tomee.toURI().resolve("/test").toURL());
