fix ordinal_num for French numbers ending with 1 (#236)

This commit is contained in:
Zeno Gantner
2019-01-12 19:10:31 +01:00
committed by Ernesto Rodriguez Ortiz
parent 218d184583
commit 778786b65b
2 changed files with 4 additions and 1 deletions

View File

@@ -107,10 +107,13 @@ TEST_CASES_ORDINAL = (
TEST_CASES_ORDINAL_NUM = (
(1, '1er'),
(8, '8me'),
(11, '11me'),
(12, '12me'),
(14, '14me'),
(21, '21me'),
(28, '28me'),
(100, '100me'),
(101, '101me'),
(1000, '1000me'),
(1000000, '1000000me')
)