summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-22 12:49:56 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-22 12:52:45 +0200
commiteb815938750bed7e4f8f9ec1974d60e4994a9421 (patch)
tree181e72088abe7f1e93f81c47efcbaf8ad7522825
parent1a3835fdf364acb3beebccffbc2aa0c1efe66150 (diff)
[2.2.x] Fixed #31805 -- Fixed SchemaTests.tearDown() when table names are case-insensitive.
Backport of fd53db842c35c994dbd54196dd38a908f3676b1a from master
-rw-r--r--tests/schema/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index dfc684c4b0..a1d364bcf4 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -92,8 +92,12 @@ class SchemaTests(TransactionTestCase):
with connection.schema_editor() as editor:
connection.disable_constraint_checking()
table_names = connection.introspection.table_names()
+ if connection.features.ignores_table_name_case:
+ table_names = [table_name.lower() for table_name in table_names]
for model in itertools.chain(SchemaTests.models, self.local_models):
tbl = converter(model._meta.db_table)
+ if connection.features.ignores_table_name_case:
+ tbl = tbl.lower()
if tbl in table_names:
editor.delete_model(model)
table_names.remove(tbl)