Removed redundant get_max_column_name_length() calls in invalid_models_tests.test_models.FieldNamesTests.

This commit is contained in:
Mariusz Felisiak 2020-03-18 15:22:13 +01:00
parent 5c8441a0b8
commit 3f7e4b16bf
1 changed files with 0 additions and 4 deletions

View File

@ -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)