Skip to content

Commit 477b24c

Browse files
authored
anagram 1.0.1.3: disambiguate test description (#526)
"multiple" are now specific about the number. exercism/problem-specifications#671
1 parent b51461e commit 477b24c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/anagram/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: anagram
2-
version: 1.0.0.2
2+
version: 1.0.1.3
33

44
dependencies:
55
- base

exercises/anagram/test/Tests.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ cases = [ Case { description = "no matches"
4646
, candidates = ["eagle"]
4747
, expected = []
4848
}
49-
, Case { description = "detects multiple anagrams"
49+
, Case { description = "detects two anagrams"
5050
, subject = "master"
5151
, candidates = ["stream", "pigeon", "maters"]
5252
, expected = ["stream", "maters"]
@@ -61,7 +61,7 @@ cases = [ Case { description = "no matches"
6161
, candidates = ["enlists", "google", "inlets", "banana"]
6262
, expected = ["inlets"]
6363
}
64-
, Case { description = "detects multiple anagrams"
64+
, Case { description = "detects three anagrams"
6565
, subject = "allergy"
6666
, candidates = ["gallery", "ballerina", "regally", "clergy", "largely", "leading"]
6767
, expected = ["gallery", "regally", "largely"]

0 commit comments

Comments
 (0)