From 79fec52e9050bbd40831707b574ab3e0342f1a67 Mon Sep 17 00:00:00 2001 From: Brent O'Connor Date: Wed, 26 Jun 2019 13:12:44 -0500 Subject: [PATCH] Remove skip --- categories/tests/test_mgmt_commands.py | 3 --- 1 file changed, 3 deletions(-) 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)