Skip to content
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
}
]