Skip to content

Commit

Permalink
Action sbt scalafmtAll
Browse files Browse the repository at this point in the history
  • Loading branch information
takapi327 committed Feb 22, 2025
1 parent 61054ee commit a1f67ee
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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] =
Expand All @@ -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(
Expand Down

0 comments on commit a1f67ee

Please sign in to comment.