diff --git a/cms/djangoapps/contentstore/git_export_utils.py b/cms/djangoapps/contentstore/git_export_utils.py index 2163927649..086f9d9f34 100644 --- a/cms/djangoapps/contentstore/git_export_utils.py +++ b/cms/djangoapps/contentstore/git_export_utils.py @@ -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.') diff --git a/lms/djangoapps/dashboard/git_import.py b/lms/djangoapps/dashboard/git_import.py index d66d94133e..585cfd4a90 100644 --- a/lms/djangoapps/dashboard/git_import.py +++ b/lms/djangoapps/dashboard/git_import.py @@ -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' ) diff --git a/lms/djangoapps/dashboard/management/commands/tests/test_git_add_course.py b/lms/djangoapps/dashboard/management/commands/tests/test_git_add_course.py index 8a163f8448..3d15982bbd 100644 --- a/lms/djangoapps/dashboard/management/commands/tests/test_git_add_course.py +++ b/lms/djangoapps/dashboard/management/commands/tests/test_git_add_course.py @@ -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') diff --git a/lms/djangoapps/dashboard/tests/test_sysadmin.py b/lms/djangoapps/dashboard/tests/test_sysadmin.py index 4d5fb2dcf4..7c5ff323af 100644 --- a/lms/djangoapps/dashboard/tests/test_sysadmin.py +++ b/lms/djangoapps/dashboard/tests/test_sysadmin.py @@ -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