Skip to content

Commit

Permalink
Fix typo in test name constistency -> consistency (#3586)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmccarthy authored Aug 28, 2020
1 parent cecbdab commit bf86b27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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" ->
Expand Down

0 comments on commit bf86b27

Please sign in to comment.