diff --git a/exercises/anagram/tests/Tests.elm b/exercises/anagram/tests/Tests.elm index 6d8773c..b1dd3fc 100644 --- a/exercises/anagram/tests/Tests.elm +++ b/exercises/anagram/tests/Tests.elm @@ -64,7 +64,7 @@ tests = \() -> Expect.equal [] (detect "go" [ "go Go GO" ]) - , test "anagrams must use all letters exactly once" <| + , test "anagrams must use all letters exactly once (go)" <| \() -> Expect.equal [] (detect "tapper" [ "patter" ]) @@ -84,7 +84,7 @@ tests = \() -> Expect.equal [] (detect "BANANA" [ "Banana" ]) - , test "anagrams must use all letters exactly once" <| + , test "anagrams must use all letters exactly once (banana)" <| \() -> Expect.equal [] (detect "patter" [ "tapper" ])