summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-08-24 14:56:09 -0400
committerTim Graham <timograham@gmail.com>2017-09-25 14:48:11 -0400
commit8a1768432b1ec3ecfa390ac5eb70dbfb0cff59b3 (patch)
tree47c842a0a041a0865de859cf7d333cef3250a897 /tests
parent6da140724dba546d2f3aced1308e617747b0385c (diff)
Fixed #28552 -- Dropped support for MySQL 5.5.
Diffstat (limited to 'tests')
-rw-r--r--tests/schema/tests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index e7f47865d4..f2a96294cc 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -2302,8 +2302,6 @@ class SchemaTests(TransactionTestCase):
Changing the primary key field name of a model with a self-referential
foreign key (#26384).
"""
- if connection.vendor == 'mysql' and connection.mysql_version < (5, 6, 6):
- self.skipTest('Skip known bug renaming primary keys on older MySQL versions (#24995).')
with connection.schema_editor() as editor:
editor.create_model(Node)
old_field = Node._meta.get_field('node_id')