Skip to content

Commit

Permalink
Update test_sentencify.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 20, 2024
1 parent 0518e84 commit 0c2936e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kyu_7/pull_your_words_together_man/test_sentencify.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class SentencifyTestCase(unittest.TestCase):
"Yes."),
(["FIELDS", "of", "CORN", "are", "to", "be", "sown"],
"FIELDS of CORN are to be sown."),
(["i'm", "afraid", "I", "can't", "let", "you", "do", "that"],
"I'm afraid I can't let you do that.")])
([r"i'm", "afraid", "I", "can't", "let", "you", "do", "that"],
r"I'm afraid I can't let you do that.")])
def test_sentencify(self, words, expected):
"""
Testing 'sentencify' function with various test data.
Expand Down

0 comments on commit 0c2936e

Please sign in to comment.