We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d743aa commit 0524417Copy full SHA for 0524417
1 file changed
lms/djangoapps/instructor/tests/test_api.py
@@ -2425,7 +2425,10 @@ def test_list_course_role_members_staff(self):
2425
'first_name': self.other_staff.first_name,
2426
'last_name': self.other_staff.last_name,
2427
}
2428
- ]
+ ],
2429
+ 'count': 1,
2430
+ 'num_pages': 1,
2431
+ 'current_page': 1,
2432
2433
res_json = json.loads(response.content.decode('utf-8'))
2434
assert res_json == expected
@@ -2440,7 +2443,10 @@ def test_list_course_role_members_beta(self):
2440
2443
# check response content
2441
2444
expected = {
2442
2445
'course_id': str(self.course.id),
- 'beta': []
2446
+ 'beta': [],
2447
+ 'count': 0,
2448
+ 'num_pages': 0,
2449
2450
2451
2452
0 commit comments