Commit a1f309ad by Ehtesham

removing AC-491 checks from remove list

parent 19752257
...@@ -374,11 +374,7 @@ class MultipleChoiceProblemTypeTest(ProblemTypeTestBase, ProblemTypeTestMixin): ...@@ -374,11 +374,7 @@ class MultipleChoiceProblemTypeTest(ProblemTypeTestBase, ProblemTypeTestMixin):
Additional setup for MultipleChoiceProblemTypeTest Additional setup for MultipleChoiceProblemTypeTest
""" """
super(MultipleChoiceProblemTypeTest, self).setUp(*args, **kwargs) super(MultipleChoiceProblemTypeTest, self).setUp(*args, **kwargs)
self.problem_page.a11y_audit.config.set_rules({ self.problem_page.a11y_audit.config.set_rules()
'ignore': [
'section' # TODO: AC-491
]
})
def answer_problem(self, correct): def answer_problem(self, correct):
""" """
...@@ -416,11 +412,7 @@ class RadioProblemTypeTest(ProblemTypeTestBase, ProblemTypeTestMixin): ...@@ -416,11 +412,7 @@ class RadioProblemTypeTest(ProblemTypeTestBase, ProblemTypeTestMixin):
Additional setup for RadioProblemTypeTest Additional setup for RadioProblemTypeTest
""" """
super(RadioProblemTypeTest, self).setUp(*args, **kwargs) super(RadioProblemTypeTest, self).setUp(*args, **kwargs)
self.problem_page.a11y_audit.config.set_rules({ self.problem_page.a11y_audit.config.set_rules()
'ignore': [
'section' # TODO: AC-491
]
})
def answer_problem(self, correct): def answer_problem(self, correct):
""" """
......
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