From d86c7bec3ce9628381463dccedbafc4af04181db Mon Sep 17 00:00:00 2001 From: cahrens Date: Mon, 9 Feb 2015 09:30:52 -0500 Subject: [PATCH] Update for renamed test split modulestore. --- .../courseware/management/commands/tests/test_dump_course.py | 4 ++-- 1 file changed, 2 insertions(+), 2 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 fc13685384..bda05fea4b 100644 --- a/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py +++ b/lms/djangoapps/courseware/management/commands/tests/test_dump_course.py @@ -18,7 +18,7 @@ from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore.django import modulestore from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase, mixed_store_config from xmodule.modulestore.tests.django_utils import ( - TEST_DATA_MONGO_MODULESTORE, TEST_DATA_MONGO_MODULESTORE_SPLIT_DEFAULT + TEST_DATA_MONGO_MODULESTORE, TEST_DATA_SPLIT_MODULESTORE ) from xmodule.modulestore.tests.factories import CourseFactory from xmodule.modulestore.xml_importer import import_from_xml @@ -228,5 +228,5 @@ class CommandSplitMongoTestCase(CommandsTestBase): Test case for management commands using the mixed mongo modulestore with split as the default. """ - MODULESTORE = TEST_DATA_MONGO_MODULESTORE_SPLIT_DEFAULT + MODULESTORE = TEST_DATA_SPLIT_MODULESTORE __test__ = True