mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Tests: Fix util.order_by_name test.
Électrik sorts last because it has an accent now.
This commit is contained in:
parent
7aa50d2293
commit
7048bac38e
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ def test_types_french_order(session):
|
||||||
types = session.query(tables.Type).filter(tables.Type.id < 10000)
|
types = session.query(tables.Type).filter(tables.Type.id < 10000)
|
||||||
types = list(util.order_by_name(types, tables.Type, language=french))
|
types = list(util.order_by_name(types, tables.Type, language=french))
|
||||||
assert types[0].name_map[french] == 'Acier', types[0].name_map[french]
|
assert types[0].name_map[french] == 'Acier', types[0].name_map[french]
|
||||||
assert types[-1].name_map[french] == 'Vol', types[-1].name_map[french]
|
assert types[-1].name_map[french] == 'Électrik', types[-1].name_map[french]
|
||||||
|
|
||||||
@parametrize('id', range(1, 10))
|
@parametrize('id', range(1, 10))
|
||||||
def test_get_pokemon_id(session, id):
|
def test_get_pokemon_id(session, id):
|
||||||
|
|
Loading…
Reference in a new issue