Skip to content

Commit cbcb3ec

Browse files
committed
Run scalafmt on test
1 parent 4ec3887 commit cbcb3ec

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

modules/ciris/src/test/scala/derevo/ciris/CirisSuite.scala

+8-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ class CirisSuite extends AnyFunSuite {
4141

4242
val res = hoconSource[Data](cfg, "data").load[IO].unsafeRunSync()
4343

44-
assert(res == Data("Demo", List("1", "2", "3"), Map("wtf" -> 1, "lol" -> 2, "wut" -> 3), Rate(2, Option(Duration(100, "millis")))))
44+
assert(
45+
res == Data(
46+
"Demo",
47+
List("1", "2", "3"),
48+
Map("wtf" -> 1, "lol" -> 2, "wut" -> 3),
49+
Rate(2, Option(Duration(100, "millis")))
50+
)
51+
)
4552
}
4653

4754
test("README.md example") {
@@ -67,4 +74,3 @@ class CirisSuite extends AnyFunSuite {
6774
}
6875

6976
}
70-

0 commit comments

Comments
 (0)