Skip to content
Snippets Groups Projects
Unverified Commit 58241484 authored by Hassan's avatar Hassan Committed by GitHub
Browse files

Merge pull request #22737 from edx/pwnage101/rename-creditrequirement-order-3

Rename order in CreditRequirement (3/3)
parents 5e98fd7f 1178ad8b
Loading
......@@ -222,7 +222,6 @@ class MigrationTests(TestCase):
Tests for migrations.
"""
@unittest.skip("Need to skip as part of a 3-release rollout to rename a field in the credit app. This will be unskipped in DE-1823.")
@override_settings(MIGRATION_MODULES={})
def test_migrations_are_in_sync(self):
"""
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('credit', '0007_creditrequirement_copy_values'),
]
operations = [
migrations.RemoveField(
model_name='creditrequirement',
name='order',
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment