Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion course/templates/course/flow-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,10 @@
<p>{% trans feedback.bulk_feedback|safe %}</p>
{% endif %}
{% if show_answer and correct_answer %}
<p>{{ correct_answer|safe }}</p>
<details>
<summary>Correct answer, click to reveal</summary>
<p>{{ correct_answer|safe }}</p>
</details>
{% endif %}
</div>
{% elif show_answer and correct_answer %}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pages/test_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def test_figures(self):
"srO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T"
"19vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xA"
"C1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQp" # spellchecker: disable-line # noqa: E501
"GhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdIS"
"GhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdIS" # spellchecker: disable-line # noqa: E501
"UpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeY"
"mZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+T" # spellchecker: disable-line # noqa: E501
"l5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/AP38ooooA//Z")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_receivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


@pytest.mark.slow
class UpdateCouresOrUserSignalTest(SingleCourseTestMixin, TestCase):
class UpdateCoursesOrUserSignalTest(SingleCourseTestMixin, TestCase):

def test_update_course_no_requested(self):
with mock.patch(HANDLE_ENROLLMENT_PATH) as mock_handle_enrollment:
Expand Down