Skip to content

Commit 9c5e3db

Browse files
paivBethanyG
authored andcommitted
Follow unittest method naming conventions
1 parent 6836320 commit 9c5e3db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

exercises/concept/little-sisters-essay/string_methods_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ def test_sentence_ending_without_period(self):
2626
self.assertEqual(check_sentence_ending("Fittonia are nice"), False)
2727

2828
@pytest.mark.task(taskno=3)
29-
def remove_extra_spaces_only_start(self):
29+
def test_remove_extra_spaces_only_start(self):
3030
self.assertEqual(clean_up_spacing(" A rolling stone gathers no moss"),
3131
"A rolling stone gathers no moss")
3232

3333
@pytest.mark.task(taskno=3)
34-
def remove_extra_spaces(self):
34+
def test_remove_extra_spaces(self):
3535
self.assertEqual(clean_up_spacing(" Elephants can't jump. "),
3636
"Elephants can't jump.")
3737

0 commit comments

Comments
 (0)