Skip to content

Commit 04e95f8

Browse files
author
Alejandro Gómez
committed
Fix test
1 parent 1bc1ee8 commit 04e95f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/exercises/stdlib/ListsSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class ListsSpec extends Spec with Checkers {
130130
check(
131131
Test.testSuccess(
132132
Lists.reuseTailsLists _,
133-
List(2, 3) ::: List(3) ::: List[Int]() ::: HNil
133+
1 :: 2 :: 3 :: List(2, 3) :: List(3) :: List.empty[Int] :: HNil
134134
)
135135
)
136136
}

0 commit comments

Comments
 (0)