Skip to content

fix pangram test for duplicate mixed-case chars #565

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 2 commits into from
Jun 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/pangram/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: pangram
version: 1.0.0.2
version: 1.1.0.3

dependencies:
- base
Expand Down
2 changes: 1 addition & 1 deletion exercises/pangram/test/Tests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ cases = [ Case { description = "sentence empty"
, expected = True
}
, Case { description = "upper and lower case versions of the same character should not be counted separately"
, input = "the quick brown fox jumped over the lazy FOX"
, input = "the quick brown fox jumps over with lazy FX"
, expected = False
}
]