From a1f67ee732ebdad547ad68b26c25646cbf62c7e6 Mon Sep 17 00:00:00 2001 From: takapi327 Date: Sat, 22 Feb 2025 22:21:28 +0900 Subject: [PATCH] Action sbt scalafmtAll --- .../scala/ldbc/connector/ConnectionTest.scala | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/module/ldbc-connector/shared/src/test/scala/ldbc/connector/ConnectionTest.scala b/module/ldbc-connector/shared/src/test/scala/ldbc/connector/ConnectionTest.scala index 51b28b585..cbe8860e4 100644 --- a/module/ldbc-connector/shared/src/test/scala/ldbc/connector/ConnectionTest.scala +++ b/module/ldbc-connector/shared/src/test/scala/ldbc/connector/ConnectionTest.scala @@ -1711,15 +1711,15 @@ class ConnectionTest extends FTestPlatform: for statement <- connection.createStatement() _ <- statement.execute("CREATE DATABASE IF NOT EXISTS connector_before_after_test") - _ <- connection.setSchema("connector_before_after_test") + _ <- connection.setSchema("connector_before_after_test") _ <- statement.execute( - """ + """ |CREATE TABLE IF NOT EXISTS test ( | id INT PRIMARY KEY AUTO_INCREMENT, | name VARCHAR(255) NOT NULL |) |""".stripMargin - ) + ) yield 1 def after(length: Int, connection: ldbc.sql.Connection[IO]): IO[Unit] = @@ -1729,12 +1729,12 @@ class ConnectionTest extends FTestPlatform: yield () val connection = Connection.withBeforeAfter[IO, Int]( - host = "127.0.0.1", - port = 13306, - user = "ldbc", + host = "127.0.0.1", + port = 13306, + user = "ldbc", password = Some("password"), - before = before, - after = after + before = before, + after = after ) assertIO(