fix unicode strings in lms/ part 2

This commit is contained in:
Matthew Piatetsky
2019-02-04 14:18:57 -05:00
committed by Calen Pennington
parent 33d16d8e24
commit 764319d3e0
87 changed files with 560 additions and 540 deletions

View File

@@ -219,7 +219,7 @@ class InstructorTaskModuleTestCase(InstructorTaskCourseTestCase):
Returns the factory args for the option problem type.
"""
return {
'question_text': 'The correct answer is {0}'.format(correct_answer),
'question_text': u'The correct answer is {0}'.format(correct_answer),
'options': [OPTION_1, OPTION_2],
'correct_option': correct_answer,
'num_responses': num_responses,