diff options
Diffstat (limited to 'tests/model_inheritance_regress')
| -rw-r--r-- | tests/model_inheritance_regress/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_inheritance_regress/models.py b/tests/model_inheritance_regress/models.py index 358217554b..5e4c928dc9 100644 --- a/tests/model_inheritance_regress/models.py +++ b/tests/model_inheritance_regress/models.py @@ -193,7 +193,7 @@ class MessyBachelorParty(BachelorParty): # Check concrete -> abstract -> concrete inheritance class SearchableLocation(models.Model): - keywords = models.CharField(max_length=256) + keywords = models.CharField(max_length=255) class Station(SearchableLocation): |
