Commit cbcb1059 by Calen Pennington

fixup! Fix discussions by correctly serializing outgoing course_ids

parent 76a04fa8
...@@ -285,7 +285,7 @@ class UserProfileTestCase(ModuleStoreTestCase): ...@@ -285,7 +285,7 @@ class UserProfileTestCase(ModuleStoreTestCase):
StringEndsWithMatcher('/users/{}/active_threads'.format(self.profiled_user.id)), StringEndsWithMatcher('/users/{}/active_threads'.format(self.profiled_user.id)),
data=None, data=None,
params=PartialDictMatcher({ params=PartialDictMatcher({
"course_id": self.course.id, "course_id": self.course.id.to_deprecated_string(),
"page": params.get("page", 1), "page": params.get("page", 1),
"per_page": views.THREADS_PER_PAGE "per_page": views.THREADS_PER_PAGE
}), }),
......
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