From d5b80fb7f4b966b00e04ee5069f3763c66bee8a7 Mon Sep 17 00:00:00 2001 From: Geoffrey Aldebert Date: Thu, 13 Oct 2022 14:09:31 +0200 Subject: [PATCH] Fix tests iso_country_code_numeric --- tests/test_fields.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)