Skip to content

Commit

Permalink
typelevel#2947 Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
Twizty committed Sep 27, 2019
1 parent b9c5b3e commit e9ca028
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 e9ca028

Please sign in to comment.