diff options
| author | Hasan Ramezani <hasan.r67@gmail.com> | 2019-09-05 08:56:17 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-09-05 08:59:48 +0200 |
| commit | b93d786251513a5da102abc31f275ab3ee2850ed (patch) | |
| tree | 836a7fde5f59851f29d5d45508178492782754e7 | |
| parent | 72ebe85a269aab4bdb3829de4846b41f90973c5d (diff) | |
Made SchemaTests.test_alter_db_table_case run only on backends where table names are case-insensitive.
| -rw-r--r-- | tests/schema/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py index 8421fac09e..41c1cd5120 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -1130,6 +1130,7 @@ class SchemaTests(TransactionTestCase): # The unique constraint remains. self.assertEqual(counts, {'fks': expected_fks, 'uniques': 1, 'indexes': 0}) + @skipUnlessDBFeature('ignores_table_name_case') def test_alter_db_table_case(self): # Create the table with connection.schema_editor() as editor: |
