From 73b2d002bb2900298957e18a6caa0759e6835554 Mon Sep 17 00:00:00 2001 From: Timothy McCarthy Date: Fri, 28 Aug 2020 17:14:39 +1000 Subject: [PATCH] Fix typo in test name constistency -> consistency --- laws/src/main/scala/cats/laws/discipline/FoldableTests.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laws/src/main/scala/cats/laws/discipline/FoldableTests.scala b/laws/src/main/scala/cats/laws/discipline/FoldableTests.scala index b2b97df2e0..6082ecd95a 100644 --- a/laws/src/main/scala/cats/laws/discipline/FoldableTests.scala +++ b/laws/src/main/scala/cats/laws/discipline/FoldableTests.scala @@ -29,7 +29,7 @@ trait FoldableTests[F[_]] extends UnorderedFoldableTests[F] { "foldLeft consistent with foldMap" -> forAll(laws.leftFoldConsistentWithFoldMap[A, B] _), "foldRight consistent with foldMap" -> forAll(laws.rightFoldConsistentWithFoldMap[A, B] _), "foldRight is lazy" -> forAll(laws.foldRightLazy[A] _), - "ordered constistency" -> forAll(laws.orderedConsistency[A] _), + "ordered consistency" -> forAll(laws.orderedConsistency[A] _), "exists consistent with find" -> forAll(laws.existsConsistentWithFind[A] _), "foldM identity" -> forAll(laws.foldMIdentity[A, B] _), "reduceLeftOption consistent with reduceLeftToOption" ->