mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed the use of the -ise suffix, where -ize is prefered
This commit is contained in:
parent
a90ffcac21
commit
10a09b8e60
4 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ class PropertyTests(TestCase):
|
|||
# The "full_name" property hasn't provided a "set" method.
|
||||
self.assertRaises(AttributeError, setattr, self.a, 'full_name', 'Paul McCartney')
|
||||
|
||||
# But "full_name_2" has, and it can be used to initialise the class.
|
||||
# But "full_name_2" has, and it can be used to initialize the class.
|
||||
a2 = Person(full_name_2='Paul McCartney')
|
||||
a2.save()
|
||||
self.assertEqual(a2.first_name, 'Paul')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue