Merge pull request #20724 from edx/feanil/fix_test_repo_reference

Use our fork of this repo instead of the mitocw one.
This commit is contained in:
Feanil Patel
2019-05-30 14:53:58 -04:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ class GitExportError(Exception):
"please create it, or configure a different path with "
"GIT_REPO_EXPORT_DIR").format(GIT_REPO_EXPORT_DIR)
URL_BAD = _('Non writable git url provided. Expecting something like:'
' git@github.com:mitocw/edx4edx_lite.git')
' git@github.com:edx/edx4edx_lite.git')
URL_NO_AUTH = _('If using http urls, you must provide the username '
'and password in the url. Similar to '
'https://user:pass@github.com/user/course.')

View File

@@ -59,7 +59,7 @@ class GitImportErrorUrlBad(GitImportError):
"""
MESSAGE = _(
'Non usable git url provided. Expecting something like:'
' git@github.com:mitocw/edx4edx_lite.git'
' git@github.com:edx/edx4edx_lite.git'
)

View File

@@ -50,7 +50,7 @@ class TestGitAddCourse(SharedModuleStoreTestCase):
"""
Tests the git_add_course management command for proper functions.
"""
TEST_REPO = 'https://github.com/mitocw/edx4edx_lite.git'
TEST_REPO = 'https://github.com/edx/edx4edx_lite.git'
TEST_COURSE = 'MITx/edx4edx/edx4edx'
TEST_BRANCH = 'testing_do_not_delete'
TEST_BRANCH_COURSE = CourseKey.from_string('MITx/edx4edx_branch/edx4edx')

View File

@@ -45,7 +45,7 @@ class SysadminBaseTestCase(SharedModuleStoreTestCase):
Base class with common methods used in XML and Mongo tests
"""
TEST_REPO = 'https://github.com/mitocw/edx4edx_lite.git'
TEST_REPO = 'https://github.com/edx/edx4edx_lite.git'
TEST_BRANCH = 'testing_do_not_delete'
TEST_BRANCH_COURSE = CourseLocator.from_string('course-v1:MITx+edx4edx_branch+edx4edx')
MODULESTORE = TEST_DATA_SPLIT_MODULESTORE