summaryrefslogtreecommitdiff
path: root/tests/introspection
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2016-12-19 22:16:11 +0100
committerTim Graham <timograham@gmail.com>2016-12-19 16:16:11 -0500
commitcc0bb07013ed3e7ec58ee6da014ed3094a1a350f (patch)
tree226d933c382318d2c0f1f6033e38f9a2d050094a /tests/introspection
parent10278885fd909085bd76ccc1690a979582455f9e (diff)
downloaddjango-cc0bb07013ed3e7ec58ee6da014ed3094a1a350f.tar.gz
Refs #19884 -- Removed DatabaseFeatures.can_introspect_max_length.
Unused (always True) after 3e43d24ad36d45cace57e6a7efd34638577ae744.
Diffstat (limited to 'tests/introspection')
-rw-r--r--tests/introspection/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/introspection/tests.py b/tests/introspection/tests.py
index a8ce01b2b2..816c4a9b37 100644
--- a/tests/introspection/tests.py
+++ b/tests/introspection/tests.py
@@ -83,7 +83,6 @@ class IntrospectionTests(TransactionTestCase):
'SmallIntegerField' if connection.features.can_introspect_small_integer_field else 'IntegerField']
)
- @skipUnlessDBFeature('can_introspect_max_length')
def test_get_table_description_col_lengths(self):
with connection.cursor() as cursor:
desc = connection.introspection.get_table_description(cursor, Reporter._meta.db_table)