diff --git a/exercises/triangle/tests/Tests.elm b/exercises/triangle/tests/Tests.elm index 861d60e..9c4842e 100644 --- a/exercises/triangle/tests/Tests.elm +++ b/exercises/triangle/tests/Tests.elm @@ -8,7 +8,9 @@ import Triangle exposing (triangleKind, Triangle(..)) tests : Test tests = describe "triangleKind" - [ test "equilateral triangles have equal sides" <| + [ test "the solution is for the correct version of the test" <| + \() -> Expect.equal 2 version + , test "equilateral triangles have equal sides" <| \() -> Expect.equal (Ok Equilateral) (triangleKind 2 2 2) , test "larger equilateral triangles also have equal sides" <| \() -> Expect.equal (Ok Equilateral) (triangleKind 10 10 10)