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)) }