From c97ecf8afd91d95c30c4360a6e2042b128fc4f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristina=20Heredia=20G=C3=B3mez?= Date: Fri, 21 Apr 2023 15:08:58 +0200 Subject: [PATCH] tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Cristina Heredia Gómez --- tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala b/tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala index 3944cb51ce..1b9c067b5f 100644 --- a/tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala +++ b/tests/shared/src/test/scala/cats/tests/NonEmptySeqSuite.scala @@ -85,7 +85,6 @@ class NonEmptySeqSuite extends NonEmptyCollectionSuite[Seq, NonEmptySeq, NonEmpt assert(Seq.empty[Int].toNeSeq == None) } - test("NonEmptySeq#zip is consistent with Seq#zip") { forAll { (a: NonEmptySeq[Int], b: NonEmptySeq[Int], f: (Int, Int) => Int) => assert(a.zip(b).toSeq === (a.toSeq.zip(b.toSeq)))