Skip to content

Commit

Permalink
ASM version upgrade to 9.6 (JDK 22 ready) - backport from master (#1965)
Browse files Browse the repository at this point in the history
JPA WDF test fix

Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
  • Loading branch information
rfelcman committed Oct 11, 2023
1 parent f654304 commit 813a6a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2023 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2015 SAP. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -181,7 +181,7 @@ public void testNegativ() {
boolean operationFailed = false;
env.beginTransaction(em);
try {
employee = em.getReference(Employee.class, Integer.valueOf(17 + 4));
employee = em.getReference(Employee.class, 741);
} catch (EntityNotFoundException e) {
// $JL-EXC$ expected behavior
operationFailed = true;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
<docs.status>DRAFT</docs.status>

<!--Eclipse Dependencies version-->
<eclipselink.asm.version>9.5.0</eclipselink.asm.version>
<eclipselink.asm.version>9.6.0</eclipselink.asm.version>
<activation.version>2.0.1</activation.version>
<annotation.version>2.0.0</annotation.version>
<cdi.version>3.0.0</cdi.version>
Expand Down

0 comments on commit 813a6a9

Please sign in to comment.