From d9d09e2b4b9f76e6d342c86ca65cefc057c7e0d6 Mon Sep 17 00:00:00 2001 From: Renzo Lucioni Date: Tue, 4 Nov 2014 15:25:38 -0500 Subject: [PATCH] Fix track selection tests --- lms/djangoapps/verify_student/tests/test_integration.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lms/djangoapps/verify_student/tests/test_integration.py b/lms/djangoapps/verify_student/tests/test_integration.py index 9d47222cfe..72ac2aa919 100644 --- a/lms/djangoapps/verify_student/tests/test_integration.py +++ b/lms/djangoapps/verify_student/tests/test_integration.py @@ -109,10 +109,10 @@ class TestProfEdVerification(ModuleStoreTestCase): # automatically in the course. self.assertFalse(CourseEnrollment.is_enrolled(self.user, self.course_key)) - # Expect that the rendered page says that the student is "registering", - # not that they've already been registered. - self.assertIn("You are registering for", resp.content) - self.assertNotIn("You are now registered", resp.content) + # Expect that the rendered page says that the student is "enrolled", + # not that they've already been enrolled. + self.assertIn("You are enrolling", resp.content) + self.assertNotIn("You are now enrolled", resp.content) def _prices_on_page(self, page_content): """ Retrieve the available prices on the verify page. """