From 2a88ba1bacfc147af5f0dd78fca23c305d1ab218 Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Thu, 12 Nov 2015 08:22:32 -0400 Subject: [PATCH] word-count: tweak normalization test case In exercism/xpython#234 we discussed how adding a second word in the normalization case can let a track might allow some languages to use sorted counts as a normalization-agnostic assertion. --- word-count.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/word-count.json b/word-count.json index eb288ab7bf..3b5845de73 100644 --- a/word-count.json +++ b/word-count.json @@ -27,8 +27,8 @@ }, { "description": "normalize case", - "input": "go Go GO", - "expected": { "go" : 3 } + "input": "go Go GO Stop stop", + "expected": { "go" : 3, "stop" : 2 } } ] -} \ No newline at end of file +}