summaryrefslogtreecommitdiff
path: root/tests/properties
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-15 05:23:10 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-15 05:23:14 -0800
commit10a09b8e609b93c2b2500368c33d9db81906009b (patch)
tree09d8633bc2bd720897e292a272b2b04cd0dee97f /tests/properties
parenta90ffcac218e6783f931d3a44eca4d830b9315ba (diff)
Fixed the use of the -ise suffix, where -ize is prefered
Diffstat (limited to 'tests/properties')
-rw-r--r--tests/properties/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/properties/tests.py b/tests/properties/tests.py
index 3db8fbf0f8..45443026a3 100644
--- a/tests/properties/tests.py
+++ b/tests/properties/tests.py
@@ -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')