Remove skip

This commit is contained in:
Brent O'Connor 2019-06-26 13:12:44 -05:00
parent 61e156b385
commit 79fec52e90

View file

@ -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)