Merge pull request #9454 from edx/tasawer/bugfix/ecom-1165-fixing-password-reset-test

Removing flaky decorator from test
This commit is contained in:
tasawernawaz
2015-08-31 13:53:23 +05:00
2 changed files with 1 additions and 2 deletions

View File

@@ -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
)

View File

@@ -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