diff --git a/core/tests/test_export.py b/core/tests/test_export.py index 4e81ffe289fe606bbfa211f1208880dd1c647eee..5ef57548e9c303d50c40bc68d3293048da76890c 100644 --- a/core/tests/test_export.py +++ b/core/tests/test_export.py @@ -97,8 +97,8 @@ class ExportInstanceTest(APITestCase): self.client = APIClient() self.client.force_login(user=self.data['reviewers'][0]) self.response = self.client.get('/api/instance/export/', - data={'setPasswords': True, - 'selected_exam': self.data['exams'][0].exam_type_id}) + data={'setPasswords': True, + 'selected_exam': self.data['exams'][0].exam_type_id}) def test_can_access(self): self.assertEqual(status.HTTP_200_OK, self.response.status_code)