From 10a876ffbd38d790c8a72462cd69b0d673160f21 Mon Sep 17 00:00:00 2001 From: Kira Miller <31229189+kiram15@users.noreply.github.com> Date: Wed, 30 Oct 2024 09:12:35 -0600 Subject: [PATCH] fix: removing migration check after dropping column in table (#35742) --- common/djangoapps/util/tests/test_db.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py index 8d80991c41..4a16c2a20a 100644 --- a/common/djangoapps/util/tests/test_db.py +++ b/common/djangoapps/util/tests/test_db.py @@ -1,7 +1,6 @@ """Tests for util.db module.""" from io import StringIO -import unittest import ddt from django.core.management import call_command @@ -121,7 +120,6 @@ class MigrationTests(TestCase): Tests for migrations. """ - @unittest.skip('Skipping temporarily to drop column in table') @override_settings(MIGRATION_MODULES={}) def test_migrations_are_in_sync(self): """