Merge pull request #2633 from edx/flowerhack/disable-flakey-language-test

Disable flakey language change acceptance tests
This commit is contained in:
Julia Hansbrough
2014-02-18 17:34:22 -05:00

View File

@@ -99,6 +99,7 @@ class LanguageTest(UniqueCourseTest):
self.password = "testpass"
self.email = "test@example.com"
@skip("Flakey in its present form; re-enable when fixed")
def test_change_lang(self):
AutoAuthPage(self.browser, course_id=self.course_id).visit()
self.dashboard_page.visit()
@@ -109,6 +110,7 @@ class LanguageTest(UniqueCourseTest):
# We should see the dummy-language text on the page
self.assertIn(self.current_courses_text, changed_text)
@skip("Flakey in its present form; re-enable when fixed")
def test_language_persists(self):
auto_auth_page = AutoAuthPage(self.browser, username=self.username, password=self.password, email=self.email, course_id=self.course_id)
auto_auth_page.visit()