diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-12 15:53:27 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-13 11:56:24 +0200 |
| commit | 1bdfde085763a0aae0fb07a904ca784e067b6703 (patch) | |
| tree | aab03f8a0d15501fc4565e5c0c3f8119ca3ac4b7 /tests/indexes | |
| parent | a65547c04af52087f78e9bbaa79bdae3807e5c64 (diff) | |
Fixed typo in SchemaIndexesMySQLTests.test_no_index_for_foreignkey().
Diffstat (limited to 'tests/indexes')
| -rw-r--r-- | tests/indexes/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/indexes/tests.py b/tests/indexes/tests.py index 59cad6cc39..7bc305e596 100644 --- a/tests/indexes/tests.py +++ b/tests/indexes/tests.py @@ -336,7 +336,7 @@ class SchemaIndexesMySQLTests(TransactionTestCase): ArticleTranslation._meta.db_table, ) 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 = [ str(statement) for statement in connection.schema_editor()._model_indexes_sql( |
