Skip to content

Commit

Permalink
typelevel#2947 Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
Twizty authored and travisbrown committed Nov 5, 2019
1 parent 9df254b commit 9f53565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/test/scala/cats/tests/BifoldableSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class BifoldableSuite extends CatsSuite {
checkAll("Bifoldable[Either compose Either]", SerializableTests.serializable(eitherComposeEither))

test("bifold works for 2 monoids") {
Bifoldable[Either].bifold(Either.right[Int, String]("something")) should === ((0, "something"))
Bifoldable[Either].bifold(Either.left[Int, String](5)) should === ((5, ""))
Bifoldable[Either].bifold(Either.right[Int, String]("something")) should ===((0, "something"))
Bifoldable[Either].bifold(Either.left[Int, String](5)) should ===((5, ""))
}
}

0 comments on commit 9f53565

Please sign in to comment.