Skip to content

Commit

Permalink
Update tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala
Browse files Browse the repository at this point in the history
Co-authored-by: Arman Bilge <armanbilge@gmail.com>
  • Loading branch information
CristinaHG and armanbilge committed Apr 24, 2023
1 parent c97ecf8 commit 9700c15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class NonEmptySeqSuite extends NonEmptyCollectionSuite[Seq, NonEmptySeq, NonEmpt
}

test("NonEmptySeq#zip is consistent with Seq#zip") {
forAll { (a: NonEmptySeq[Int], b: NonEmptySeq[Int], f: (Int, Int) => Int) =>
forAll { (a: NonEmptySeq[Int], b: NonEmptySeq[Int]) =>
assert(a.zip(b).toSeq === (a.toSeq.zip(b.toSeq)))
}
}
Expand Down

0 comments on commit 9700c15

Please sign in to comment.