mirror of https://github.com/django/django.git
Removed redundant get_max_column_name_length() calls in invalid_models_tests.test_models.FieldNamesTests.
This commit is contained in:
parent
5c8441a0b8
commit
3f7e4b16bf
|
@ -361,8 +361,6 @@ class FieldNamesTests(SimpleTestCase):
|
|||
#13711 -- Model check for long M2M column names when database has
|
||||
column name length limits.
|
||||
"""
|
||||
allowed_len, db_alias = get_max_column_name_length()
|
||||
|
||||
# A model with very long name which will be used to set relations to.
|
||||
class VeryLongModelNamezzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz(models.Model):
|
||||
title = models.CharField(max_length=11)
|
||||
|
@ -455,8 +453,6 @@ class FieldNamesTests(SimpleTestCase):
|
|||
#13711 -- Model check for long column names
|
||||
when database does not support long names.
|
||||
"""
|
||||
allowed_len, db_alias = get_max_column_name_length()
|
||||
|
||||
class ModelWithLongField(models.Model):
|
||||
title = models.CharField(max_length=11)
|
||||
|
||||
|
|
Loading…
Reference in New Issue