Skip to content

Commit

Permalink
Fix test name grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzai committed Sep 11, 2020
1 parent c298b7e commit 49ad8b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/FunctorSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class FunctorSuite extends CatsSuite {
assert(Functor[Map[String, *]].unzip(Map.empty[String, (Int, Int)]) === ((emptyM, emptyM)))
}

test("_1F, _2F and swapF forms correct list for concrete list of tuples") {
test("_1F, _2F and swapF form correct lists for concrete list of tuples") {
forAll { l: List[(Int, Int)] =>
val (l1, l2) = l.unzip
assertEquals(l._1F, l1)
Expand Down

0 comments on commit 49ad8b1

Please sign in to comment.