From 37822ee99fbbb49b864b084fe12682d33849068a Mon Sep 17 00:00:00 2001 From: John Eskew Date: Tue, 12 Apr 2016 13:42:32 -0400 Subject: [PATCH] Add XML_COURSE_DIRS back in. --- .../courseware/management/commands/tests/test_dump_course.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py b/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py index 53a5b87a68..bbff7ff15e 100644 --- a/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py +++ b/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py @@ -24,6 +24,7 @@ from xmodule.modulestore.tests.factories import CourseFactory from xmodule.modulestore.xml_importer import import_course_from_xml DATA_DIR = settings.COMMON_TEST_DATA_ROOT +XML_COURSE_DIRS = ['toy', 'simple'] @attr('shard_1')