From 477b24c9d0075d24e7a8cd6d4380c3ba03edfcd3 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Mon, 8 May 2017 00:30:54 -0700 Subject: [PATCH] anagram 1.0.1.3: disambiguate test description (#526) "multiple" are now specific about the number. https://github.com/exercism/x-common/pull/671 --- exercises/anagram/package.yaml | 2 +- exercises/anagram/test/Tests.hs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"]