diff --git a/cms/envs/test.py b/cms/envs/test.py index 63b5efc645..06ea5309ed 100644 --- a/cms/envs/test.py +++ b/cms/envs/test.py @@ -41,8 +41,8 @@ MODULESTORE_OPTIONS = { 'default_class': 'xmodule.raw_module.RawDescriptor', 'host': 'localhost', 'db': 'test_xmodule', - 'collection': 'modulestore', - 'fs_root': GITHUB_REPO_ROOT, + 'collection': 'test_modulestore', + 'fs_root': TEST_ROOT / "data", 'render_template': 'mitxmako.shortcuts.render_to_string', } diff --git a/lms/envs/acceptance.py b/lms/envs/acceptance.py index 8346df5b6e..c9b9596637 100644 --- a/lms/envs/acceptance.py +++ b/lms/envs/acceptance.py @@ -13,7 +13,7 @@ modulestore_options = { 'default_class': 'xmodule.raw_module.RawDescriptor', 'host': 'localhost', 'db': 'test_xmodule', - 'collection': 'modulestore', + 'collection': 'test_modulestore', 'fs_root': TEST_ROOT / "data", 'render_template': 'mitxmako.shortcuts.render_to_string', } @@ -33,7 +33,7 @@ CONTENTSTORE = { 'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore', 'OPTIONS': { 'host': 'localhost', - 'db': 'test_xcontent', + 'db': 'test_xmodule', } }