Commit eb744dea by Chris Rodriguez

Unindenting the class test

parent e5939c84
...@@ -11,6 +11,7 @@ import ddt ...@@ -11,6 +11,7 @@ import ddt
from ..helpers import UniqueCourseTest, auto_auth, create_multiple_choice_problem from ..helpers import UniqueCourseTest, auto_auth, create_multiple_choice_problem
from ...fixtures.course import CourseFixture, XBlockFixtureDesc from ...fixtures.course import CourseFixture, XBlockFixtureDesc
from lettuce import world, step from lettuce import world, step
from nose.plugins.attrib import attr
from ...pages.common.logout import LogoutPage from ...pages.common.logout import LogoutPage
from ...pages.lms.courseware import CoursewarePage from ...pages.lms.courseware import CoursewarePage
from ...pages.lms.instructor_dashboard import InstructorDashboardPage from ...pages.lms.instructor_dashboard import InstructorDashboardPage
...@@ -289,16 +290,16 @@ class SubsectionGradingPolicyTest(ProgressPageBaseTest): ...@@ -289,16 +290,16 @@ class SubsectionGradingPolicyTest(ProgressPageBaseTest):
self._check_for_sr_text_in_chart() self._check_for_sr_text_in_chart()
@attr('a11y') @attr('a11y')
class ProgressPageA11yTest(ProgressPageBaseTest): class ProgressPageA11yTest(ProgressPageBaseTest):
"""
Class to test the accessibility of the progress page.
"""
def test_progress_page_a11y(self):
""" """
Class to test the accessibility of the progress page. Test the accessibility of the progress page.
""" """
self.log_in_as_unique_user()
def test_progress_page_a11y(self): self.progress_page.visit()
""" self.progress_page.a11y_audit.check_for_accessibility_errors()
Test the accessibility of the progress page.
"""
self.log_in_as_unique_user()
self.progress_page.visit()
self.progress_page.a11y_audit.check_for_accessibility_errors()
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