From 9e3f68c0a0f67e76ddd5cb5bb3433a5e07a00d48 Mon Sep 17 00:00:00 2001 From: Ayub-khan Date: Mon, 18 Apr 2016 12:03:46 +0500 Subject: [PATCH] -Addressed wrong course id comment. --- lms/djangoapps/django_comment_client/forum/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/django_comment_client/forum/tests.py b/lms/djangoapps/django_comment_client/forum/tests.py index 4df7a5ea21..790b78f858 100644 --- a/lms/djangoapps/django_comment_client/forum/tests.py +++ b/lms/djangoapps/django_comment_client/forum/tests.py @@ -1318,7 +1318,7 @@ class InlineDiscussionUnicodeTestCase(SharedModuleStoreTestCase, UnicodeTestMixi request.user = self.student with self.assertRaises(Http404): views.inline_discussion( - request, unicode(self.course.id), self.course.discussion_topics['General']['id'] + request, "/some.invalid.key/course-v1:TTT+CS01+2015_T0", self.course.discussion_topics['General']['id'] )