From 44fcb9021cc92b5565d0e529c6c297011723f11b Mon Sep 17 00:00:00 2001 From: Falaq Abdulmajeed Date: Mon, 30 Dec 2024 11:58:24 +0300 Subject: [PATCH] modified test_same string --- solutions/tests/test_cumulative_sum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/tests/test_cumulative_sum.py b/solutions/tests/test_cumulative_sum.py index 48d61c6b3..a1c29af72 100644 --- a/solutions/tests/test_cumulative_sum.py +++ b/solutions/tests/test_cumulative_sum.py @@ -57,7 +57,7 @@ def test_combination(self): self.assertEqual(cumulative_sum([1.0, -2, -3.0, 4]), [1, -1, -4, 0]) def test_same(self): - """It should return a cumulative list of same positive integers.""" + """It should return a cumulative list of positive integers.""" self.assertEqual(cumulative_sum([3, 3, 3]), [3, 6, 9]) # Edge cases