From 7f3d945874de3c03a433dfe236cb57c3df8ecd5a Mon Sep 17 00:00:00 2001 From: LukaJCB Date: Sat, 26 Aug 2017 11:08:55 +0200 Subject: [PATCH] Fix typo (Foldabale => Foldable) --- tests/src/test/scala/cats/tests/NonEmptyListTests.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/test/scala/cats/tests/NonEmptyListTests.scala b/tests/src/test/scala/cats/tests/NonEmptyListTests.scala index 3c4ccf9e6e..af5a8fac05 100644 --- a/tests/src/test/scala/cats/tests/NonEmptyListTests.scala +++ b/tests/src/test/scala/cats/tests/NonEmptyListTests.scala @@ -269,7 +269,7 @@ class NonEmptyListTests extends CatsSuite { } } - test("NonEmptyList#fromFoldabale is consistent with NonEmptyList#fromList") { + test("NonEmptyList#fromFoldable is consistent with NonEmptyList#fromList") { forAll { (xs: List[Int]) => NonEmptyList.fromList(xs) should === (NonEmptyList.fromFoldable(xs)) }