We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6836320 commit 9c5e3dbCopy full SHA for 9c5e3db
1 file changed
exercises/concept/little-sisters-essay/string_methods_test.py
@@ -26,12 +26,12 @@ def test_sentence_ending_without_period(self):
26
self.assertEqual(check_sentence_ending("Fittonia are nice"), False)
27
28
@pytest.mark.task(taskno=3)
29
- def remove_extra_spaces_only_start(self):
+ def test_remove_extra_spaces_only_start(self):
30
self.assertEqual(clean_up_spacing(" A rolling stone gathers no moss"),
31
"A rolling stone gathers no moss")
32
33
34
- def remove_extra_spaces(self):
+ def test_remove_extra_spaces(self):
35
self.assertEqual(clean_up_spacing(" Elephants can't jump. "),
36
"Elephants can't jump.")
37
0 commit comments