diff --git a/exercises/pangram/canonical-data.json b/exercises/pangram/canonical-data.json index 1dab499d05..800123e283 100644 --- a/exercises/pangram/canonical-data.json +++ b/exercises/pangram/canonical-data.json @@ -39,6 +39,11 @@ "description": "pangram with mixed case and punctuation", "input": "\"Five quacking Zephyrs jolt my wax bed.\"", "expected": true + }, + { + "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", + "expected": false } ] }