Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Nov 9, 2018
1 parent dfb2bb2 commit 34f3688
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 @@ -218,7 +218,7 @@ class KleisliSuite extends CatsSuite {
test("liftNT consistent with mapK") {
val t: List ~> Option = λ[List ~> Option](_.headOption)
forAll { (f: Kleisli[List, Int, Int], i: Int) =>
(f.mapK(t).run(i)) should === (Kleisli.liftNT(t)(f).run(i))
(f.mapK(t).run(i)) should ===(Kleisli.liftNT(t)(f).run(i))
}
}

Expand Down

0 comments on commit 34f3688

Please sign in to comment.