Skip to content

Commit

Permalink
fix: Update test case
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan committed Oct 9, 2024
1 parent 3c289df commit b5b6bf9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion xblocks_contrib/word_cloud/tests/test_word_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ def test_my_student_view(self):
as_dict = frag.to_dict()
content = as_dict["content"]
self.assertIn(
"WordCloudBlock: count is now",
"Word cloud",
content,
"XBlock did not render correct student view",
)
self.assertIn(
"Your words were:",
content,
"XBlock did not render correct student view",
)

0 comments on commit b5b6bf9

Please sign in to comment.