mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix tests, since Farfetch’d got a name change
This commit is contained in:
parent
bf6b2bc646
commit
73f388ed69
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ parametrize = pytest.mark.parametrize
|
|||
|
||||
# Funny characters
|
||||
(u'Mr. Mime', 'pokemon_species', 122),
|
||||
(u"Farfetch'd", 'pokemon_species', 83),
|
||||
(u"Farfetch’d", 'pokemon_species', 83),
|
||||
(u'Poké Ball', 'items', 4),
|
||||
|
||||
# Forms
|
||||
|
@ -93,7 +93,7 @@ def test_language_lookup(lookup):
|
|||
(u'pokeball', u'Poké Ball'),
|
||||
|
||||
# Names with squiggles in them
|
||||
(u'farfetchd', u"Farfetch'd"),
|
||||
(u'farfetchd', u"Farfetch’d"),
|
||||
(u'porygonz', u'Porygon-Z'),
|
||||
|
||||
# Sufficiently long foreign names
|
||||
|
|
Loading…
Reference in a new issue