From b2e1136b71ec9a1db098d8ead8ea058cc1cd875d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Kubik?= Date: Tue, 26 Nov 2024 10:36:21 +0100 Subject: [PATCH] fix formatting --- .../jdbc/structuredtypes/StructuredTypesGetStringBaseIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(