Skip to content

Commit

Permalink
anagram 1.0.1.3: disambiguate test description (#526)
Browse files Browse the repository at this point in the history
"multiple" are now specific about the number.
exercism/problem-specifications#671
  • Loading branch information
petertseng authored May 8, 2017
1 parent b51461e commit 477b24c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/anagram/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: anagram
version: 1.0.0.2
version: 1.0.1.3

dependencies:
- base
Expand Down
4 changes: 2 additions & 2 deletions exercises/anagram/test/Tests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"]
Expand Down

0 comments on commit 477b24c

Please sign in to comment.