summaryrefslogtreecommitdiff
path: root/tests/max_lengths
diff options
context:
space:
mode:
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))