Skip to content

Commit 9d4a4bd

Browse files
author
Matthew Donovan
committedJun 24, 2024
8324841: PKCS11 tests still skip execution
Reviewed-by: valeriep
1 parent ca5a438 commit 9d4a4bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/jdk/sun/security/pkcs11/PKCS11Test.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -791,8 +791,8 @@ private static Path findNSSLibrary(Path path, Path libraryName) throws IOExcepti
791791
(tp, attr) -> tp.getFileName().equals(libraryName))) {
792792

793793
return files.findAny()
794-
.orElseThrow(() -> new SkippedException(
795-
"NSS library \"" + libraryName + "\" was not found in " + path));
794+
.orElseThrow(() ->
795+
new RuntimeException("NSS library \"" + libraryName + "\" was not found in " + path));
796796
}
797797
}
798798

0 commit comments

Comments
 (0)
Please sign in to comment.