diff --git a/categories/tests/test_mgmt_commands.py b/categories/tests/test_mgmt_commands.py index 96ba5a7..7466910 100644 --- a/categories/tests/test_mgmt_commands.py +++ b/categories/tests/test_mgmt_commands.py @@ -1,6 +1,4 @@ # -*- coding: utf-8 -*- -from unittest import skip - from django.core import management from django.core.management.base import CommandError from django.db import connection @@ -25,7 +23,6 @@ class TestMgmtCommands(TestCase): def test_add_category_fields_app(self): management.call_command('add_category_fields', 'flatpages', verbosity=0) - @skip("Breaks with Django > 2. Skipping until it can be fixed.") def test_drop_category_field(self): management.call_command('drop_category_field', 'flatpages', 'flatpage', 'category', verbosity=0)