Skip to content

Commit

Permalink
other: KleisliSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
satorg committed Dec 11, 2021
1 parent 873fbea commit b09ec19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/KleisliSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class KleisliSuite extends CatsSuite {
// see: https://github.com/typelevel/cats/issues/3947
val resL = (1 to 10000).toList.traverse_(_ => Kleisli.liftF[Id, String, Unit](())).run("")
val resV = (1 to 10000).toVector.traverse_(_ => Kleisli.liftF[Id, String, Unit](())).run("")
assert(resL == resV)
assert(resL === resV)
}

test("traverse_ doesn't stack overflow with List + Eval") {
Expand Down

0 comments on commit b09ec19

Please sign in to comment.