Skip to content

Commit

Permalink
JPA WDF random test failure fix
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman committed Sep 4, 2023
1 parent 753a11f commit a25140e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void testNegativ() {
boolean operationFailed = false;
env.beginTransaction(em);
try {
employee = em.getReference(Employee.class, 17 + 41);
employee = em.getReference(Employee.class, 741);
} catch (EntityNotFoundException e) {
// $JL-EXC$ expected behavior
operationFailed = true;
Expand Down

0 comments on commit a25140e

Please sign in to comment.