From cbcb1059a31087e2c479eaf85f6d7c5eb87f46a6 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Fri, 9 May 2014 16:47:39 -0400 Subject: [PATCH] fixup! Fix discussions by correctly serializing outgoing course_ids --- 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 f66246fad4..65199b5836 100644 --- a/lms/djangoapps/django_comment_client/forum/tests.py +++ b/lms/djangoapps/django_comment_client/forum/tests.py @@ -285,7 +285,7 @@ class UserProfileTestCase(ModuleStoreTestCase): StringEndsWithMatcher('/users/{}/active_threads'.format(self.profiled_user.id)), data=None, params=PartialDictMatcher({ - "course_id": self.course.id, + "course_id": self.course.id.to_deprecated_string(), "page": params.get("page", 1), "per_page": views.THREADS_PER_PAGE }),