summaryrefslogtreecommitdiff
path: root/tests/properties
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:17:58 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:17:58 -0800
commitf67e18f39eef898ee99120bb3913a34a1c118089 (patch)
tree845987cc088b64d91d08aff0cbb648ab630ed2ff /tests/properties
parentc347f78cc1b2a06958f692f0622deceac534dc6b (diff)
Fixed all E251 violations
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 c471c414a1..3db8fbf0f8 100644
--- a/tests/properties/tests.py
+++ b/tests/properties/tests.py
@@ -19,6 +19,6 @@ class PropertyTests(TestCase):
self.assertRaises(AttributeError, setattr, self.a, 'full_name', 'Paul McCartney')
# But "full_name_2" has, and it can be used to initialise the class.
- a2 = Person(full_name_2 = 'Paul McCartney')
+ a2 = Person(full_name_2='Paul McCartney')
a2.save()
self.assertEqual(a2.first_name, 'Paul')