Skip to content

Commit 1e3f1ed

Browse files
committed
Also catch UnsupportedOperationException in FuzzingTest
1 parent aa1561a commit 1e3f1ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsign-core/src/test/java/net/jsign/FuzzingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void testFuzzing() throws Exception {
6262
AuthenticodeSigner signer = new AuthenticodeSigner(keystore, "test", "password").withTimestamping(false);
6363
signer.sign(signable);
6464
}
65-
} catch (IOException e) {
65+
} catch (IOException | UnsupportedOperationException e) {
6666
// expected
6767
}
6868
}

0 commit comments

Comments
 (0)