diff --git a/mindmap/tests/test_mindmap.py b/mindmap/tests/test_mindmap.py index 623b996..2da5d9d 100644 --- a/mindmap/tests/test_mindmap.py +++ b/mindmap/tests/test_mindmap.py @@ -87,7 +87,7 @@ def test_student_view_with_mind_map(self, initialize_js_mock: Mock): self.xblock.student_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap.html", expected_context, + "public/html/mindmap.html", expected_context, ) initialize_js_mock.assert_called_once_with( 'MindMapXBlock', json_args=expected_js_context @@ -126,7 +126,7 @@ def test_student_view_empty_mind_map(self, initialize_js_mock: Mock): self.xblock.student_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap.html", expected_context, + "public/html/mindmap.html", expected_context, ) initialize_js_mock.assert_called_once_with( 'MindMapXBlock', json_args=expected_js_context @@ -158,7 +158,7 @@ def test_static_mind_map_in_student_view(self): self.xblock.student_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap.html", expected_context, + "public/html/mindmap.html", expected_context, ) def test_student_view_for_instructor(self): @@ -189,7 +189,7 @@ def test_student_view_for_instructor(self): self.xblock.student_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap.html", expected_context, + "public/html/mindmap.html", expected_context, ) def test_studio_view(self): @@ -226,7 +226,7 @@ def test_studio_view(self): self.xblock.studio_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap_edit.html", expected_context, + "public/html/mindmap_edit.html", expected_context, ) @initialize_js_mock @@ -271,7 +271,7 @@ def test_student_not_allowed_submission(self, initialize_js_mock: Mock): self.xblock.student_view() self.xblock.render_template.assert_called_once_with( - "static/html/mindmap.html", expected_context, + "public/html/mindmap.html", expected_context, ) initialize_js_mock.assert_called_once_with( 'MindMapXBlock', json_args=expected_js_context