diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-04-30 13:40:05 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-04-30 13:40:05 +0000 |
| commit | c78d861c244c953023ad8a128a0749d077b4e356 (patch) | |
| tree | e62e852088fdd73a94efbc42e84ed220e84a601d /tests | |
| parent | 13b4f98b8088cdf66c616625483dee5d1a302c0a (diff) | |
Fixed #15640 -- Added new initial digit in Spain phone numbers to localflavor's ESPhoneNumberField form field. Thanks, Claude Paroz.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16132 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/forms/localflavor/es.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/forms/localflavor/es.py b/tests/regressiontests/forms/localflavor/es.py index b584075513..95a94c4fa8 100644 --- a/tests/regressiontests/forms/localflavor/es.py +++ b/tests/regressiontests/forms/localflavor/es.py @@ -108,10 +108,11 @@ class ESLocalFlavorTests(LocalFlavorTestCase): '650010101': '650010101', '931234567': '931234567', '800123123': '800123123', + '789789789': '789789789', } invalid = { '555555555': error_invalid, - '789789789': error_invalid, + '489489489': error_invalid, '99123123': error_invalid, '9999123123': error_invalid, } |
