From 1be66aa291b0d7ca457fd019b456527541a2002d Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Fri, 21 Feb 2025 16:42:42 -0500 Subject: [PATCH] Remove "Chain#hashCode is consistent with List#hashCode" --- tests/shared/src/test/scala/cats/tests/ChainSuite.scala | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/shared/src/test/scala/cats/tests/ChainSuite.scala b/tests/shared/src/test/scala/cats/tests/ChainSuite.scala index a375fdc946..2a4c4a9bb1 100644 --- a/tests/shared/src/test/scala/cats/tests/ChainSuite.scala +++ b/tests/shared/src/test/scala/cats/tests/ChainSuite.scala @@ -408,12 +408,6 @@ class ChainSuite extends CatsSuite { } } - test("Chain#hashCode is consistent with List#hashCode") { - forAll { (x: Chain[Int]) => - assert(x.hashCode === (x.toList.hashCode)) - } - } - test("Chain#takeWhile is consistent with List#takeWhile") { forAll { (x: Chain[Int], p: Int => Boolean) => assert(x.takeWhile(p).toList === (x.toList.takeWhile(p)))