Skip to content

Commit

Permalink
Fix junit version check errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sp717 committed Jul 30, 2024
1 parent 244556b commit d9541f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tst/com/amazon/corretto/crypto/provider/test/EdDSATest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
import org.junit.jupiter.api.parallel.ResourceLock;
import org.junit.jupiter.api.condition.EnabledOnJre;
import org.junit.jupiter.api.condition.JRE;
// import org.junit.jupiter.api.condition.Mode;

@ExtendWith(TestResultLogger.class)
@Execution(ExecutionMode.CONCURRENT)
@ResourceLock(value = TestUtil.RESOURCE_GLOBAL, mode = ResourceAccessMode.READ)
@EnabledOnJre(value = JRE.JAVA_15, mode = Mode.HIGHER_THAN_OR_EQUAL)
@EnabledOnJre(value = JRE.JAVA_17)
public class EdDSATest {

private KeyPairGenerator nativeGen;
Expand Down

0 comments on commit d9541f6

Please sign in to comment.