Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
makssent committed Jan 18, 2025
1 parent c5f769c commit 6e7d0f7
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,12 @@ class FirebirdXAConnectionWrapperTest {

private final DatabaseType databaseType = TypedSPILoader.getService(DatabaseType.class, "Firebird");

@SuppressWarnings("checkstyle:TodoComment")
@Test
void assertWrap() throws SQLException {
XAConnection actual = DatabaseTypedSPILoader.getService(XAConnectionWrapper.class, databaseType).wrap(createXADataSource(), mockConnection());
assertThat(actual, instanceOf(FBXAConnection.class));
/*
* TODO: Fix the error with getting XAResource assertThat(actual.getXAResource(), instanceOf(FBXAConnection.class));
*/
// TODO Fix the error with getting XAResource assertThat(actual.getXAResource(), instanceOf(FBXAConnection.class));
}

private XADataSource createXADataSource() {
Expand Down

0 comments on commit 6e7d0f7

Please sign in to comment.