Skip to content

Commit 080e433

Browse files
committed
acronym: Remove test with mixed-case word
see: exercism/problem-specifications#788
1 parent 0b52b40 commit 080e433

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

exercises/acronym/acronym_test.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from acronym import abbreviate
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
6+
# test cases adapted from `x-common//canonical-data.json` @ version: 1.1.0
77

88
class AcronymTest(unittest.TestCase):
99
def test_basic(self):
@@ -12,9 +12,6 @@ def test_basic(self):
1212
def test_lowercase_words(self):
1313
self.assertEqual(abbreviate('Ruby on Rails'), 'ROR')
1414

15-
def test_camelcase(self):
16-
self.assertEqual(abbreviate('HyperText Markup Language'), 'HTML')
17-
1815
def test_punctuation(self):
1916
self.assertEqual(abbreviate('First In, First Out'), 'FIFO')
2017

0 commit comments

Comments
 (0)