summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/model_fields/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_fields/models.py b/tests/model_fields/models.py
index 177d48f9da..f53c45c693 100644
--- a/tests/model_fields/models.py
+++ b/tests/model_fields/models.py
@@ -58,7 +58,7 @@ class Counter(six.Iterator):
raise StopIteration
else:
self.n += 1
- return (self.n, 'val-'+str(self.n))
+ return (self.n, 'val-' + str(self.n))
class WhizIter(models.Model):