Commit 58a2dc24 by Tasawer Committed by Tasawer Nawaz

Removing flaky decorator from test

ECOM-1165
parent 0de0fbb9
......@@ -127,7 +127,7 @@ class CombinedLoginAndRegisterPage(PageObject):
@property
def url(self):
"""Return the URL for the combined login/registration page. """
url = "{base}/account/{login_or_register}".format(
url = "{base}/{login_or_register}".format(
base=BASE_URL,
login_or_register=self._start_page
)
......
......@@ -109,7 +109,6 @@ class LoginFromCombinedPageTest(UniqueCourseTest):
self.login_page.visit().toggle_form()
self.assertEqual(self.login_page.current_form, "register")
@flaky # TODO fix this, see ECOM-1165
def test_password_reset_success(self):
# Create a user account
email, password = self._create_unique_user() # pylint: disable=unused-variable
......
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