Commit f02889e8 by Sanford Student

removing redundant inherit

parent d996c2a3
...@@ -11,7 +11,6 @@ from milestones.tests.utils import MilestonesTestCaseMixin ...@@ -11,7 +11,6 @@ from milestones.tests.utils import MilestonesTestCaseMixin
from opaque_keys.edx.keys import UsageKey from opaque_keys.edx.keys import UsageKey
from openedx.core.lib.gating import api as gating_api from openedx.core.lib.gating import api as gating_api
from student.tests.factories import CourseEnrollmentFactory from student.tests.factories import CourseEnrollmentFactory
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
from ..milestones import MilestonesTransformer from ..milestones import MilestonesTransformer
from ...api import get_course_blocks from ...api import get_course_blocks
...@@ -20,7 +19,7 @@ from ...api import get_course_blocks ...@@ -20,7 +19,7 @@ from ...api import get_course_blocks
@attr('shard_3') @attr('shard_3')
@ddt.ddt @ddt.ddt
@patch.dict('django.conf.settings.FEATURES', {'ENABLE_SPECIAL_EXAMS': True, 'MILESTONES_APP': True}) @patch.dict('django.conf.settings.FEATURES', {'ENABLE_SPECIAL_EXAMS': True, 'MILESTONES_APP': True})
class MilestonesTransformerTestCase(CourseStructureTestCase, MilestonesTestCaseMixin, ModuleStoreTestCase): class MilestonesTransformerTestCase(CourseStructureTestCase, MilestonesTestCaseMixin):
""" """
Test behavior of ProctoredExamTransformer Test behavior of ProctoredExamTransformer
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment