summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-06-13 17:38:17 +0000
committerRamiro Morales <cramm0@gmail.com>2011-06-13 17:38:17 +0000
commitbcad22655fab64ae70d8b27bba67fb028c0211b1 (patch)
tree128737113d03b71e7deb159949dbb3f01c379695
parentc013c07ed7908b009cfd2ccc511e3e635c66f3d6 (diff)
Removed a name clash in a test method. Refs #16246.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16392 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/regressiontests/forms/tests/extra.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/forms/tests/extra.py b/tests/regressiontests/forms/tests/extra.py
index b8b32cb151..67a5ffc7b1 100644
--- a/tests/regressiontests/forms/tests/extra.py
+++ b/tests/regressiontests/forms/tests/extra.py
@@ -495,7 +495,7 @@ class FormsExtraTestCase(unittest.TestCase, AssertFormErrorsMixin):
self.assertFormErrors([u'Enter a valid IPv4 address.'], f.clean, 'fe80::223:6cff:fe8a:2e8a')
self.assertFormErrors([u'Enter a valid IPv4 address.'], f.clean, '2a02::223:6cff:fe8a:2e8a')
- def test_generic_ipaddress_as_ipv4_only(self):
+ def test_generic_ipaddress_as_ipv6_only(self):
f = GenericIPAddressField(protocol="IPv6")
self.assertFormErrors([u'This field is required.'], f.clean, '')
self.assertFormErrors([u'This field is required.'], f.clean, None)