Skip to content

Commit

Permalink
Fix tests iso_country_code_numeric
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreyaldebert committed Oct 13, 2022
1 parent 3d87d3e commit d5b80fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,13 @@ def test_do_not_match_iso_country_code_alpha3():

# iso_country_code numerique
def test_match_iso_country_code_numeric():
val = 'FRA'
val = '250'
print(iso_country_code_numeric._is(val))
assert iso_country_code_numeric._is(val)


def test_do_not_match_iso_country_code_numeric():
val = '250'
val = '003'
assert not iso_country_code_numeric._is(val)


Expand Down

0 comments on commit d5b80fb

Please sign in to comment.