diff --git a/exercises/pangram/package.yaml b/exercises/pangram/package.yaml index 461fbb482..40da4a015 100644 --- a/exercises/pangram/package.yaml +++ b/exercises/pangram/package.yaml @@ -1,5 +1,5 @@ name: pangram -version: 1.0.0.2 +version: 1.1.0.3 dependencies: - base diff --git a/exercises/pangram/test/Tests.hs b/exercises/pangram/test/Tests.hs index 22834d454..630968db9 100644 --- a/exercises/pangram/test/Tests.hs +++ b/exercises/pangram/test/Tests.hs @@ -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 } ]