From addbfa75e85aedd2f2d8bc878b5ec42b89e9d9f6 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Tue, 8 Dec 2015 15:03:11 -0500 Subject: [PATCH] Remove references to deleted ORA1 test course --- .../courseware/management/commands/tests/test_dump_course.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 b1a0ab7fde..1f1ef23f78 100644 --- a/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py +++ b/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py @@ -24,11 +24,10 @@ 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', 'open_ended'] +XML_COURSE_DIRS = ['toy', 'simple'] MAPPINGS = { 'edX/toy/2012_Fall': 'xml', 'edX/simple/2012_Fall': 'xml', - 'edX/open_ended/2012_Fall': 'xml', } TEST_DATA_MIXED_XML_MODULESTORE = mixed_store_config( @@ -92,7 +91,7 @@ class CommandsTestBase(ModuleStoreTestCase): self.assertEqual(course_ids, dumped_ids) def test_correct_course_structure_metadata(self): - course_id = unicode(modulestore().make_course_key('edX', 'open_ended', '2012_Fall')) + course_id = unicode(modulestore().make_course_key('edX', 'simple', '2012_Fall')) args = [course_id] kwargs = {'modulestore': 'default'}