From 289a1df62dbeba60f725fb86e48f7f10a88c4afe Mon Sep 17 00:00:00 2001 From: raeeschachar Date: Mon, 21 Dec 2015 15:39:15 +0500 Subject: [PATCH] Fixed test cohort by csv unicode failing on Chrome --- .../test/acceptance/tests/discussion/test_cohort_management.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/test/acceptance/tests/discussion/test_cohort_management.py b/common/test/acceptance/tests/discussion/test_cohort_management.py index 8b61f8e3f2..2ee4f62fe0 100644 --- a/common/test/acceptance/tests/discussion/test_cohort_management.py +++ b/common/test/acceptance/tests/discussion/test_cohort_management.py @@ -547,6 +547,7 @@ class CohortConfigurationTest(EventsTestMixin, UniqueCourseTest, CohortTestMixin self._create_csv_file(filename, csv_contents) self._verify_csv_upload_acceptable_file(filename) + # TODO: Change unicode_hello_in_korean = u'ßßßßßß' to u'안녕하세요', after up gradation of Chrome driver. See TNL-3944 def test_cohort_by_csv_unicode(self): """ Scenario: the instructor can upload a file with user and cohort assignments, using both emails and usernames. @@ -560,7 +561,7 @@ class CohortConfigurationTest(EventsTestMixin, UniqueCourseTest, CohortTestMixin TODO: refactor events verification to handle this scenario. Events verification assumes movements between other cohorts (manual and auto). """ - unicode_hello_in_korean = u'안녕하세요' + unicode_hello_in_korean = u'ßßßßßß' self._verify_cohort_settings(cohort_name=unicode_hello_in_korean, assignment_type=None) csv_contents = [ ['username', 'email', 'cohort'],