TOMEE-2247 - Fixed TCK IssValidationTest.
Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/bb3984b0 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/bb3984b0 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/bb3984b0 Branch: refs/heads/master Commit: bb3984b0c7fad109d3d6ceb908e34a54630f081d Parents: 2ca6e59 Author: Roberto Cortez <[email protected]> Authored: Wed Sep 12 15:57:19 2018 +0100 Committer: Roberto Cortez <[email protected]> Committed: Fri Dec 7 18:08:36 2018 +0000 ---------------------------------------------------------------------- .../apache/tomee/microprofile/jwt/AppDeploymentExtension.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/bb3984b0/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/jwt/AppDeploymentExtension.java ---------------------------------------------------------------------- diff --git a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/jwt/AppDeploymentExtension.java b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/jwt/AppDeploymentExtension.java index bf79556..dd22223 100644 --- a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/jwt/AppDeploymentExtension.java +++ b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/jwt/AppDeploymentExtension.java @@ -3,6 +3,7 @@ package org.apache.tomee.microprofile.jwt; import com.nimbusds.jose.JWSSigner; import org.apache.openejb.loader.JarLocation; import org.eclipse.microprofile.jwt.tck.TCKConstants; +import org.eclipse.microprofile.jwt.tck.config.IssValidationTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMLocationTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMTest; import org.eclipse.microprofile.jwt.tck.util.TokenUtils; @@ -85,7 +86,8 @@ public class AppDeploymentExtension implements LoadableExtension { // cases that use the Config approach. Stream.of( PublicKeyAsPEMTest.class, - PublicKeyAsPEMLocationTest.class) + PublicKeyAsPEMLocationTest.class, + IssValidationTest.class) .filter(c -> c.equals(testClass.getJavaClass())) .findAny() .ifPresent(c -> war.deleteClass(JWTAuthContextInfoProvider.class));
