diff --git a/exercises/anagram/package.yaml b/exercises/anagram/package.yaml index 77c9308f7..9baeb6c3b 100644 --- a/exercises/anagram/package.yaml +++ b/exercises/anagram/package.yaml @@ -1,5 +1,5 @@ name: anagram -version: 1.0.0.2 +version: 1.0.1.3 dependencies: - base diff --git a/exercises/anagram/test/Tests.hs b/exercises/anagram/test/Tests.hs index 91eb4e823..db9eed1cf 100644 --- a/exercises/anagram/test/Tests.hs +++ b/exercises/anagram/test/Tests.hs @@ -46,7 +46,7 @@ cases = [ Case { description = "no matches" , candidates = ["eagle"] , expected = [] } - , Case { description = "detects multiple anagrams" + , Case { description = "detects two anagrams" , subject = "master" , candidates = ["stream", "pigeon", "maters"] , expected = ["stream", "maters"] @@ -61,7 +61,7 @@ cases = [ Case { description = "no matches" , candidates = ["enlists", "google", "inlets", "banana"] , expected = ["inlets"] } - , Case { description = "detects multiple anagrams" + , Case { description = "detects three anagrams" , subject = "allergy" , candidates = ["gallery", "ballerina", "regally", "clergy", "largely", "leading"] , expected = ["gallery", "regally", "largely"]