summaryrefslogtreecommitdiff
path: root/tests/max_lengths
diff options
context:
space:
mode:
authorcoagulant <baryshev@gmail.com>2013-11-03 01:02:56 +0400
committerJason Myers <jason@jasonamyers.com>2013-11-02 23:50:33 -0500
commit8eec2d93b6e93b8a1107fb3de2acd68d6994d6ec (patch)
treedee448f4b73c925b10871f4fbe7d601f5feb576b /tests/max_lengths
parentc3791463a5a9674f8e0148fbab57eae23c138896 (diff)
downloaddjango-8eec2d93b6e93b8a1107fb3de2acd68d6994d6ec.tar.gz
Fixed all E261 warnings
Diffstat (limited to 'tests/max_lengths')
-rw-r--r--tests/max_lengths/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/max_lengths/tests.py b/tests/max_lengths/tests.py
index feb3351cf7..5dd33fc80f 100644
--- a/tests/max_lengths/tests.py
+++ b/tests/max_lengths/tests.py
@@ -34,6 +34,6 @@ class MaxLengthORMTests(unittest.TestCase):
for field in ("email", "vcard", "homepage", "avatar"):
new_args = args.copy()
- new_args[field] = "X" * 250 # a value longer than any of the default fields could hold.
+ new_args[field] = "X" * 250 # a value longer than any of the default fields could hold.
p = PersonWithCustomMaxLengths.objects.create(**new_args)
self.assertEqual(getattr(p, field), ("X" * 250))