Fixed the use of the -ise suffix, where -ize is prefered

This commit is contained in:
Alex Gaynor 2013-11-15 05:23:10 -08:00
parent a90ffcac21
commit 10a09b8e60
4 changed files with 4 additions and 4 deletions

View file

@ -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')