From d5fa69ee54e2eaa144b526f758a45ac41dfcfb58 Mon Sep 17 00:00:00 2001 From: Renzo Lucioni Date: Thu, 29 Jan 2015 11:30:44 -0500 Subject: [PATCH] Fix flaky bok-choy tests caused by malformed URL --- common/test/acceptance/pages/lms/pay_and_verify.py | 2 +- common/test/acceptance/tests/lms/test_lms.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/common/test/acceptance/pages/lms/pay_and_verify.py b/common/test/acceptance/pages/lms/pay_and_verify.py index c29d24a7ba..60e2c7dfde 100644 --- a/common/test/acceptance/pages/lms/pay_and_verify.py +++ b/common/test/acceptance/pages/lms/pay_and_verify.py @@ -55,7 +55,7 @@ class PaymentAndVerificationFlow(PageObject): @property def url(self): """Return the URL corresponding to the initial position in the flow.""" - url = "{base}/verify_student/{entry_point}/{course}".format( + url = "{base}/verify_student/{entry_point}/{course}/".format( base=BASE_URL, entry_point=self._entry_point, course=self._course_id diff --git a/common/test/acceptance/tests/lms/test_lms.py b/common/test/acceptance/tests/lms/test_lms.py index bd5b870975..c62efa7aca 100644 --- a/common/test/acceptance/tests/lms/test_lms.py +++ b/common/test/acceptance/tests/lms/test_lms.py @@ -273,7 +273,6 @@ class PayAndVerifyTest(UniqueCourseTest): # Add a verified mode to the course ModeCreationPage(self.browser, self.course_id, mode_slug=u'verified', mode_display_name=u'Verified Certificate', min_price=10, suggested_prices='10,20').visit() - @skip('flaky ECOM-1007') def test_immediate_verification_enrollment(self): # Create a user and log them in AutoAuthPage(self.browser).visit()