Skip to content

Commit 053a53f

Browse files
authored
Remove deprecated word-count test (#356)
[no important files changed]
1 parent 131ca9a commit 053a53f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

exercises/practice/word-count/word_count.vader

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ Execute (normalize case):
3838
let g:expected = {'go': 3, 'stop': 2}
3939
AssertEqual g:expected, WordCount(g:sentence)
4040

41-
Execute (with apostrophes):
42-
let g:sentence = "First: don't laugh. Then: don't cry."
43-
let g:expected = {'first': 1, 'laugh': 1, 'then': 1, "don't": 2, 'cry': 1}
44-
AssertEqual g:expected, WordCount(g:sentence)
45-
4641
Execute (with apostrophes):
4742
let g:sentence = "'First: don't laugh. Then: don't cry. You're getting it.'"
4843
let g:expected = {'first': 1, 'laugh': 1, 'then': 1, 'getting': 1, 'it': 1, "you're": 1, "don't": 2, 'cry': 1}

0 commit comments

Comments
 (0)