diff --git a/cms/djangoapps/contentstore/rest_api/v1/tests/test_views.py b/cms/djangoapps/contentstore/rest_api/v1/tests/test_views.py index b2fd23e5cc..fd6e770426 100644 --- a/cms/djangoapps/contentstore/rest_api/v1/tests/test_views.py +++ b/cms/djangoapps/contentstore/rest_api/v1/tests/test_views.py @@ -275,6 +275,12 @@ class ProctoringExamSettingsPostTests(ProctoringExamSettingsTestMixin, ModuleSto response = self.make_request(data=data) assert response.status_code == status.HTTP_403_FORBIDDEN + @override_settings( + PROCTORING_BACKENDS={ + 'DEFAULT': 'null', + 'proctortrack': {} + }, + ) def test_200_for_instructor_request(self): self.client.login(username=self.course_instructor, password=self.password) data = {