Commit 58c42303 by Daniel Friedman

Fix typo in learner analytics developer message

parent e9c0c069
...@@ -41,7 +41,7 @@ class LearnerEngagementTimelineNotFoundError(BaseError): ...@@ -41,7 +41,7 @@ class LearnerEngagementTimelineNotFoundError(BaseError):
@property @property
def message_template(self): def message_template(self):
return 'Learner {username} engagmeent timeline not found for course {course_id}.' return 'Learner {username} engagement timeline not found for course {course_id}.'
class CourseNotSpecifiedError(BaseError): class CourseNotSpecifiedError(BaseError):
......
...@@ -116,7 +116,7 @@ class EngagementTimelineTests(DemoCourseMixin, VerifyCourseIdMixin, TestCaseWith ...@@ -116,7 +116,7 @@ class EngagementTimelineTests(DemoCourseMixin, VerifyCourseIdMixin, TestCaseWith
self.assertEquals(response.status_code, status.HTTP_404_NOT_FOUND) self.assertEquals(response.status_code, status.HTTP_404_NOT_FOUND)
expected = { expected = {
u"error_code": u"no_learner_engagement_timeline", u"error_code": u"no_learner_engagement_timeline",
u"developer_message": u"Learner {} engagmeent timeline not found for course {}.".format( u"developer_message": u"Learner {} engagement timeline not found for course {}.".format(
self.DEFAULT_USERNAME, self.course_id) self.DEFAULT_USERNAME, self.course_id)
} }
self.assertDictEqual(json.loads(response.content), expected) self.assertDictEqual(json.loads(response.content), expected)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment