Skip to content

Commit

Permalink
Update test_top_3_words.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 6, 2024
1 parent 8065547 commit 04e42e7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions kyu_4/most_frequently_used_words/test_top_3_words.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
Test for 'Most frequently used words in a text'
Test for 'Most frequently used words in a text'.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
Expand Down Expand Up @@ -28,13 +29,13 @@
url='https://www.codewars.com/kata/51e056fe544cf36c410000fb',
name='Source/Kata')
class Top3WordsTestCase(unittest.TestCase):
"""
Testing top_3_words
"""
"""Testing top_3_words."""

def test_top_3_words(self):
"""
Test top_3_words function
Test top_3_words function with various test data.
:return:
"""
# pylint: disable-msg=R0801
allure.dynamic.title("Testing top_3_words function")
Expand Down

0 comments on commit 04e42e7

Please sign in to comment.