Commit 49d3a7d3 by Toby Lawrence

More quality fixes.

parent ead2f047
...@@ -30,14 +30,10 @@ class TestMicrosites(SharedModuleStoreTestCase, LoginEnrollmentTestCase): ...@@ -30,14 +30,10 @@ class TestMicrosites(SharedModuleStoreTestCase, LoginEnrollmentTestCase):
org='TestMicrositeX', org='TestMicrositeX',
emit_signals=True, emit_signals=True,
) )
cls.chapter0 = ItemFactory.create(parent_location=cls.course.location, cls.chapter0 = ItemFactory.create(parent_location=cls.course.location, display_name='Overview')
display_name='Overview') cls.chapter9 = ItemFactory.create(parent_location=cls.course.location, display_name='factory_chapter')
cls.chapter9 = ItemFactory.create(parent_location=cls.course.location, cls.section0 = ItemFactory.create(parent_location=cls.chapter0.location, display_name='Welcome')
display_name='factory_chapter') cls.section9 = ItemFactory.create(parent_location=cls.chapter9.location, display_name='factory_section')
cls.section0 = ItemFactory.create(parent_location=cls.chapter0.location,
display_name='Welcome')
cls.section9 = ItemFactory.create(parent_location=cls.chapter9.location,
display_name='factory_section')
cls.course_outside_microsite = CourseFactory.create( cls.course_outside_microsite = CourseFactory.create(
display_name='Robot_Course_Outside_Microsite', display_name='Robot_Course_Outside_Microsite',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment