We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b02038 commit c018521Copy full SHA for c018521
02_crowsnest/test.py
@@ -6,7 +6,7 @@
6
7
prg = './crowsnest.py'
8
consonant_words = [
9
- 'brigatine', 'clipper', 'dreadnought', 'frigate', 'galleon', 'haddock',
+ 'brigantine', 'clipper', 'dreadnought', 'frigate', 'galleon', 'haddock',
10
'junk', 'ketch', 'longboat', 'mullet', 'narwhal', 'porpoise', 'quay',
11
'regatta', 'submarine', 'tanker', 'vessel', 'whale', 'xebec', 'yatch',
12
'zebrafish'
@@ -34,7 +34,7 @@ def test_usage():
34
35
# --------------------------------------------------
36
def test_consonant():
37
- """brigatine -> a brigatine"""
+ """brigantine -> a brigantine"""
38
39
for word in consonant_words:
40
out = getoutput(f'{prg} {word}')
@@ -43,7 +43,7 @@ def test_consonant():
43
44
45
def test_consonant_upper():
46
- """brigatine -> a Brigatine"""
+ """brigantine -> a Brigatine"""
47
48
49
out = getoutput(f'{prg} {word.title()}')
0 commit comments