Skip to content

Commit b40d124

Browse files
committed
Action sbt scalafmtAll
1 parent a8da40d commit b40d124

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

module/ldbc-connector/native/src/test/scala/ldbc/connector/TLSConnectionTest.scala

+10-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ package ldbc.connector
88

99
import cats.effect.*
1010

11-
import fs2.text
1211
import fs2.io.file.*
1312
import fs2.io.net.tls.*
13+
import fs2.text
1414

1515
class TLSConnectionTest extends FTestPlatform:
1616

@@ -23,9 +23,15 @@ class TLSConnectionTest extends FTestPlatform:
2323
.build[IO]
2424
connection <- ConnectionProvider
2525
.default[IO]("127.0.0.1", 13306, "ldbc_ssl_user", "securepassword", "world")
26-
.setSSL(SSL.fromS2nConfig(cfg).withTLSParameters(TLSParameters(
27-
serverName = Some("MySQL_Server"),
28-
)))
26+
.setSSL(
27+
SSL
28+
.fromS2nConfig(cfg)
29+
.withTLSParameters(
30+
TLSParameters(
31+
serverName = Some("MySQL_Server")
32+
)
33+
)
34+
)
2935
.createConnection()
3036
yield connection).use { conn =>
3137
for

0 commit comments

Comments
 (0)