diff --git a/tests/test_fields.py b/tests/test_fields.py index cfd8eac..e33a37e 100644 --- a/tests/test_fields.py +++ b/tests/test_fields.py @@ -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)