From 70f5c98fb70690b44b7a9ee20c74d988580dce93 Mon Sep 17 00:00:00 2001 From: Justin Lapierre Date: Wed, 1 Jul 2020 09:40:46 -0400 Subject: [PATCH] EDUCATOR-5080 - Updated views test case to account for teamset_id as opposed to topic_id --- lms/djangoapps/teams/tests/test_views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/teams/tests/test_views.py b/lms/djangoapps/teams/tests/test_views.py index b5f5ff5ef2..1ea3725ebf 100644 --- a/lms/djangoapps/teams/tests/test_views.py +++ b/lms/djangoapps/teams/tests/test_views.py @@ -659,7 +659,7 @@ class TeamAPITestCase(APITestCase, SharedModuleStoreTestCase): name="Test team", course=None, description="Filler description", - topic_id="topic_0", + teamset_id="topic_0", **kwargs ): """Creates the payload for creating a team. kwargs can be used to specify additional fields.""" @@ -669,7 +669,7 @@ class TeamAPITestCase(APITestCase, SharedModuleStoreTestCase): 'name': name, 'course_id': str(course.id), 'description': description, - 'topic_id': topic_id, + 'teamset_id': teamset_id, }) return data