Fixed typo in SchemaIndexesMySQLTests.test_no_index_for_foreignkey().
This commit is contained in:
parent
a65547c04a
commit
1bdfde0857
|
@ -336,7 +336,7 @@ class SchemaIndexesMySQLTests(TransactionTestCase):
|
||||||
ArticleTranslation._meta.db_table,
|
ArticleTranslation._meta.db_table,
|
||||||
)
|
)
|
||||||
if storage != "InnoDB":
|
if storage != "InnoDB":
|
||||||
self.skip("This test only applies to the InnoDB storage engine")
|
self.skipTest("This test only applies to the InnoDB storage engine")
|
||||||
index_sql = [
|
index_sql = [
|
||||||
str(statement)
|
str(statement)
|
||||||
for statement in connection.schema_editor()._model_indexes_sql(
|
for statement in connection.schema_editor()._model_indexes_sql(
|
||||||
|
|
Loading…
Reference in New Issue