Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mkubik committed Nov 26, 2024
1 parent 2b9636d commit b2e1136
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected static Connection initConnection(ResultSetFormatType queryResultFormat
}

protected void assertResultSetIsCompatible(ResultSet resultSet, String expected)
throws SQLException {
throws SQLException {
// Test getString
String result = resultSet.getString(1);
TestUtil.assertEqualsIgnoringWhitespace(expected, result);
Expand All @@ -65,7 +65,7 @@ protected void assertResultSetIsCompatible(ResultSet resultSet, String expected)

// Test getBytes
TestUtil.assertEqualsIgnoringWhitespace(
expected, new String(resultSet.getBytes(1), StandardCharsets.UTF_8));
expected, new String(resultSet.getBytes(1), StandardCharsets.UTF_8));
}

protected void withFirstRow(
Expand Down

0 comments on commit b2e1136

Please sign in to comment.