Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c018521

Browse files
committed
typo
1 parent 7b02038 commit c018521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

02_crowsnest/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
prg = './crowsnest.py'
88
consonant_words = [
9-
'brigatine', 'clipper', 'dreadnought', 'frigate', 'galleon', 'haddock',
9+
'brigantine', 'clipper', 'dreadnought', 'frigate', 'galleon', 'haddock',
1010
'junk', 'ketch', 'longboat', 'mullet', 'narwhal', 'porpoise', 'quay',
1111
'regatta', 'submarine', 'tanker', 'vessel', 'whale', 'xebec', 'yatch',
1212
'zebrafish'
@@ -34,7 +34,7 @@ def test_usage():
3434

3535
# --------------------------------------------------
3636
def test_consonant():
37-
"""brigatine -> a brigatine"""
37+
"""brigantine -> a brigantine"""
3838

3939
for word in consonant_words:
4040
out = getoutput(f'{prg} {word}')
@@ -43,7 +43,7 @@ def test_consonant():
4343

4444
# --------------------------------------------------
4545
def test_consonant_upper():
46-
"""brigatine -> a Brigatine"""
46+
"""brigantine -> a Brigatine"""
4747

4848
for word in consonant_words:
4949
out = getoutput(f'{prg} {word.title()}')

0 commit comments

Comments
 (0)