We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ee3bda commit 29d8b16Copy full SHA for 29d8b16
.scalafmt.conf
@@ -1,4 +1,4 @@
1
-version = 3.2.1
+version = 3.2.2
2
3
style = defaultWithAlign
4
maxColumn = 100
fetch/src/test/scala/FetchReportingTests.scala
@@ -87,8 +87,8 @@ class FetchReportingTests extends FetchSpec {
87
"Single fetches combined with traverse are run in one round" in {
88
def fetch[F[_]: Concurrent] =
89
for {
90
- manies <- many(3) // round 1
91
- ones <- manies.traverse(one[F]) // round 2
+ manies <- many(3) // round 1
+ ones <- manies.traverse(one[F]) // round 2
92
} yield ones
93
94
val io = Fetch.runLog[IO](fetch)
0 commit comments