Merge pull request #11036 from edx/raees/chrome-bokchoy-test-cohort-by-csv-unicode
Fixed test cohort by csv unicode failing on Chrome
This commit is contained in:
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user