File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/test/java/tools/jackson/databind/misc Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 19
19
strategy :
20
20
fail-fast : false
21
21
matrix :
22
- java_version : ['17', '21', '23 ']
22
+ java_version : ['17', '21', '24 ']
23
23
os : ['ubuntu-24.04']
24
24
include :
25
25
- java_version : ' 17'
Original file line number Diff line number Diff line change @@ -41,7 +41,11 @@ public void testCauseOfThrowableIgnoral() throws Exception
41
41
_testCauseOfThrowableIgnoral (mapper );
42
42
} catch (UnsupportedOperationException e ) {
43
43
// JDK 21+ fail?
44
- verifyException (e , "Security Manager is deprecated" );
44
+ verifyException (e ,
45
+ // JDK 21, 22, 23
46
+ "Security Manager is deprecated" ,
47
+ // JDK 24
48
+ "Setting a Security Manager is not supported" );
45
49
} finally {
46
50
if (setSucceeded ) {
47
51
System .setSecurityManager (origSecMan );
You can’t perform that action at this time.
0 commit comments