summaryrefslogtreecommitdiff
path: root/tests/get_or_create
diff options
context:
space:
mode:
Diffstat (limited to 'tests/get_or_create')
-rw-r--r--tests/get_or_create/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/get_or_create/models.py b/tests/get_or_create/models.py
index cfde80ce85..865798ae98 100644
--- a/tests/get_or_create/models.py
+++ b/tests/get_or_create/models.py
@@ -29,7 +29,7 @@ class Tag(models.Model):
class Thing(models.Model):
- name = models.CharField(max_length=256)
+ name = models.CharField(max_length=255)
tags = models.ManyToManyField(Tag)