From f88daf280318f2d3ff04558cb8e3506dcb4470db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Fri, 7 Feb 2025 12:44:24 +0900 Subject: [PATCH] Fix lint --- .../tursodatabase/jdbc4/JDBC4PreparedStatementTest.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bindings/java/src/test/java/org/github/tursodatabase/jdbc4/JDBC4PreparedStatementTest.java b/bindings/java/src/test/java/org/github/tursodatabase/jdbc4/JDBC4PreparedStatementTest.java index 57a9b312b..775192589 100644 --- a/bindings/java/src/test/java/org/github/tursodatabase/jdbc4/JDBC4PreparedStatementTest.java +++ b/bindings/java/src/test/java/org/github/tursodatabase/jdbc4/JDBC4PreparedStatementTest.java @@ -227,8 +227,12 @@ class JDBC4PreparedStatementTest { @Test void testInsertMultipleTypes() throws SQLException { - connection.prepareStatement("CREATE TABLE test (col1 INTEGER, col2 REAL, col3 TEXT, col4 BLOB)").execute(); - PreparedStatement stmt = connection.prepareStatement("INSERT INTO test (col1, col2, col3, col4) VALUES (?, ?, ?, ?), (?, ?, ?, ?)"); + connection + .prepareStatement("CREATE TABLE test (col1 INTEGER, col2 REAL, col3 TEXT, col4 BLOB)") + .execute(); + PreparedStatement stmt = + connection.prepareStatement( + "INSERT INTO test (col1, col2, col3, col4) VALUES (?, ?, ?, ?), (?, ?, ?, ?)"); stmt.setInt(1, 1); stmt.setFloat(2, 1.1f);