From a908f287f8562b3251941b84daa703a06f594344 Mon Sep 17 00:00:00 2001 From: raeeschachar Date: Fri, 28 Aug 2015 16:18:06 +0500 Subject: [PATCH] Fixed test_about_me_field failing on chrome bok choy --- common/test/acceptance/tests/lms/test_learner_profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/test/acceptance/tests/lms/test_learner_profile.py b/common/test/acceptance/tests/lms/test_learner_profile.py index e59920c762..5b22856a6c 100644 --- a/common/test/acceptance/tests/lms/test_learner_profile.py +++ b/common/test/acceptance/tests/lms/test_learner_profile.py @@ -398,7 +398,7 @@ class OwnLearnerProfilePageTest(LearnerProfileTestMixin, WebAppTest): username, user_id = self.log_in_as_unique_user() profile_page = self.visit_profile_page(username, privacy=self.PRIVACY_PUBLIC) - self._test_textarea_field(profile_page, 'bio', 'Eat Sleep Code', 'Eat Sleep Code', 'display') + self._test_textarea_field(profile_page, 'bio', 'ThisIsIt', 'ThisIsIt', 'display') self._test_textarea_field(profile_page, 'bio', '', placeholder_value, 'placeholder') profile_page.make_field_editable('bio')