Skip to content

Commit

Permalink
[misc] code style correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Oct 17, 2024
1 parent 91c06e6 commit 5463572
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/org/mariadb/jdbc/integration/XaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ public void errorCodeTest() throws SQLException, XAException {
xaResource.commit(xid, true);
fail();
} catch (XAException xae) {
assertTrue(XAException.XAER_INVAL == xae.errorCode
assertTrue(
XAException.XAER_INVAL == xae.errorCode
|| XAException.XAER_NOTA == xae.errorCode); // 1398
}
xaResource.start(xid2, XAResource.TMNOFLAGS);
Expand Down

0 comments on commit 5463572

Please sign in to comment.