Skip to content

Commit

Permalink
Update test_permutations.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 7, 2024
1 parent 0679925 commit c8e5477
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kyu_4/permutations/test_permutations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
Solution for -. Permutations
Solution for -. Permutations.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
Expand Down Expand Up @@ -28,19 +29,18 @@
@pytest.mark.skip(reason="The solution is not ready")
# pylint: enable-msg=R0801
class PermutationsTestCase(unittest.TestCase):
"""
Testing permutations function
"""
"""Testing permutations function."""

def test_permutations(self):
"""
Testing permutations function
Testing permutations function.
Test that permutations function creates all
permutations of an input string and
remove duplicates, if present. This means, you
have to shuffle all letters from the input in all
possible orders.
:return:
"""
# pylint: disable-msg=R0801
allure.dynamic.title("Testing permutations function")
Expand Down

0 comments on commit c8e5477

Please sign in to comment.