summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2021-11-24 03:13:28 -0500
committerGitHub <noreply@github.com>2021-11-24 09:13:28 +0100
commitddf321479b0e006bc4efafe57726d54869f38c14 (patch)
tree2662ba327f96b30fff29d5996aa3eb8829f596c1
parent9772eaa6c00678525083da95bac2e9b726c649e3 (diff)
Removed unneeded @skipUnlessDBFeature('supports_combined_alters').
The test acts a regression test for 715ccfde24f9f2b7f6710429370a1eff3c78fc2a if the feature is True, but it works on other backends too.
-rw-r--r--tests/schema/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index 253483eb5e..e94659544a 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -1045,7 +1045,6 @@ class SchemaTests(TransactionTestCase):
with connection.schema_editor() as editor:
editor.alter_field(Note, old_field, new_field, strict=True)
- @skipUnlessDBFeature('supports_combined_alters')
def test_alter_null_to_not_null_keeping_default(self):
"""
#23738 - Can change a nullable field with default to non-nullable