We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1afba commit ea238b4Copy full SHA for ea238b4
hibernate-entitymanager/src/test/java/org/hibernate/ejb/test/transaction/TransactionJoiningTest.java
@@ -223,7 +223,8 @@ public void run() {
223
em.createQuery( "from Book" ).getResultList();
224
}
225
catch ( PersistenceException e ) {
226
- caught = e.getCause().getClass().equals( GenericJDBCException.class );
+ // slightly different expectation here now because of HHH-9312
227
+ caught = true;
228
229
assertTrue( caught );
230
0 commit comments