def setUp(self):
     """
     Create courses in modulestore.
     """
     super(TestGenerateCourseOverview, self).setUp()
     self.course_key_1 = CourseFactory.create().id
     self.course_key_2 = CourseFactory.create().id
     self.command = generate_course_overview.Command()
 def setUp(self):
     """
     Create courses in modulestore.
     """
     super(TestGenerateCourseOverview, self).setUp()  # lint-amnesty, pylint: disable=super-with-arguments
     self.course_key_1 = CourseFactory.create().id
     self.course_key_2 = CourseFactory.create().id
     self.command = generate_course_overview.Command()