Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
WayneLambert committed Dec 11, 2023
1 parent d5b89ca commit 978148d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/countdown_letters/tests/test_validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
def test_is_in_oxford_api(test_word: str):
"""Asserts that given a valid word, `True` is returned else `False`"""
in_api = validations.is_in_oxford_api(test_word)
if test_word == "radnom":
if test_word == "radnom": # misspelt on purpose
assert not in_api
elif test_word == "random":
assert in_api
Expand Down

0 comments on commit 978148d

Please sign in to comment.