Skip to content

Commit

Permalink
feat: TNL-11812 msg for assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernard Szabo committed Jan 12, 2025
1 parent e09781b commit de1aa1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cms/djangoapps/contentstore/tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def test_file_not_recognized_as_studio_url_scheme(self):
["/static/anything_goes_here?raw", "1", "2"])
def test_url_substitution_on_static_prefixes(self, url, course_key, post_substitution_url):
with_substitution = _convert_to_standard_url(url, course_key)
assert with_substitution == post_substitution_url
assert with_substitution == post_substitution_url, f'{with_substitution} expected to be {post_substitution_url}'

def test_url_substitution_on_forward_slash_prefixes(self):
raise NotImplementedError
Expand Down

0 comments on commit de1aa1d

Please sign in to comment.