diff --git a/src/test/java/net/snowflake/client/jdbc/structuredtypes/StructuredTypesGetStringBaseIT.java b/src/test/java/net/snowflake/client/jdbc/structuredtypes/StructuredTypesGetStringBaseIT.java index 5b56d2d96..05de55f99 100644 --- a/src/test/java/net/snowflake/client/jdbc/structuredtypes/StructuredTypesGetStringBaseIT.java +++ b/src/test/java/net/snowflake/client/jdbc/structuredtypes/StructuredTypesGetStringBaseIT.java @@ -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); @@ -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(