diff --git a/cms/djangoapps/contentstore/views/tests/test_preview.py b/cms/djangoapps/contentstore/views/tests/test_preview.py index 0a0018854d..7db140a290 100644 --- a/cms/djangoapps/contentstore/views/tests/test_preview.py +++ b/cms/djangoapps/contentstore/views/tests/test_preview.py @@ -14,7 +14,7 @@ from web_fragments.fragment import Fragment from xblock.core import XBlock, XBlockAside from xmodule.contentstore.django import contentstore -from xmodule.lti_module import LTIBlock +from xmodule.lti_block import LTIBlock from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore.django import modulestore from xmodule.modulestore.tests.django_utils import ( diff --git a/common/djangoapps/terrain/stubs/lti.py b/common/djangoapps/terrain/stubs/lti.py index 66963c8f96..c406da5e6e 100644 --- a/common/djangoapps/terrain/stubs/lti.py +++ b/common/djangoapps/terrain/stubs/lti.py @@ -234,7 +234,7 @@ class StubLtiHandler(StubHttpRequestHandler): """)).format(response=response_text, role=role, submit_form=submit_form) - # Currently LTI module doublequotes the lis_result_sourcedid parameter. + # Currently LTI block doublequotes the lis_result_sourcedid parameter. # Unquote response two times. return six.moves.urllib.parse.unquote(six.moves.urllib.parse.unquote(response_str)) diff --git a/lms/djangoapps/courseware/tests/test_lti_integration.py b/lms/djangoapps/courseware/tests/test_lti_integration.py index da4805774e..10d331e8f1 100644 --- a/lms/djangoapps/courseware/tests/test_lti_integration.py +++ b/lms/djangoapps/courseware/tests/test_lti_integration.py @@ -127,7 +127,7 @@ class TestLTI(BaseTestXmodule): class TestLTIBlockListing(SharedModuleStoreTestCase): """ - a test for the rest endpoint that lists LTI modules in a course + a test for the rest endpoint that lists LTI blocks in a course """ # arbitrary constant COURSE_SLUG = "100" @@ -154,7 +154,7 @@ class TestLTIBlockListing(SharedModuleStoreTestCase): display_name="section2", category='sequential') - # creates one draft and one published lti module, in different sections + # creates one draft and one published lti block, in different sections cls.lti_published = ItemFactory.create( parent_location=cls.section1.location, display_name="lti published", @@ -189,7 +189,7 @@ class TestLTIBlockListing(SharedModuleStoreTestCase): assert 404 == response.status_code def test_lti_rest_listing(self): - """tests that the draft lti module is part of the endpoint response""" + """tests that the draft lti block is part of the endpoint response""" request = mock.Mock() request.method = 'GET' response = get_course_lti_endpoints(request, course_id=str(self.course.id)) diff --git a/lms/djangoapps/courseware/tests/test_module_render.py b/lms/djangoapps/courseware/tests/test_module_render.py index bc10fa8e39..8a4b0f4391 100644 --- a/lms/djangoapps/courseware/tests/test_module_render.py +++ b/lms/djangoapps/courseware/tests/test_module_render.py @@ -45,7 +45,7 @@ from xmodule.capa.xqueue_interface import XQueueInterface from xmodule.capa_block import ProblemBlock from xmodule.contentstore.django import contentstore from xmodule.html_block import AboutBlock, CourseInfoBlock, HtmlBlock, StaticTabBlock -from xmodule.lti_module import LTIBlock +from xmodule.lti_block import LTIBlock from xmodule.modulestore import ModuleStoreEnum from xmodule.modulestore.django import ModuleI18nService, modulestore from xmodule.modulestore.tests.django_utils import ( diff --git a/lms/templates/lti_form.html b/lms/templates/lti_form.html index 119b82aa07..c0f1310fb6 100644 --- a/lms/templates/lti_form.html +++ b/lms/templates/lti_form.html @@ -12,7 +12,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string ## This form will be hidden. - ## LTI module JavaScript will trigger a "submit" on the form, and the + ## LTI block JavaScript will trigger a "submit" on the form, and the ## result will be rendered instead.