From 56a8b440aff28ff216fa4f2f12d3aff5510aec4e Mon Sep 17 00:00:00 2001 From: amitvadhel Date: Thu, 5 Sep 2019 14:35:51 +0300 Subject: [PATCH] Line too long fix --- lms/djangoapps/bulk_enroll/tests/test_views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lms/djangoapps/bulk_enroll/tests/test_views.py b/lms/djangoapps/bulk_enroll/tests/test_views.py index 177f6ccdd0..3b9ee7ee1b 100644 --- a/lms/djangoapps/bulk_enroll/tests/test_views.py +++ b/lms/djangoapps/bulk_enroll/tests/test_views.py @@ -350,7 +350,10 @@ class BulkEnrollmentTest(ModuleStoreTestCase, LoginEnrollmentTestCase, APITestCa 'cohorts': "cohort1,cohort2" }) self.assertEqual(response.status_code, 400) - self.assertIn('If provided, the cohorts and courses should have equal number of items.', response.content.decode('utf-8')) + self.assertIn( + 'If provided, the cohorts and courses should have equal number of items.', + response.content.decode('utf-8') + ) def test_fail_on_missing_cohorts(self): """