Skip to content

Commit

Permalink
modified test_same string
Browse files Browse the repository at this point in the history
  • Loading branch information
FalaqMajeed committed Dec 30, 2024
1 parent bc9aeb5 commit 44fcb90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/tests/test_cumulative_sum.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 44fcb90

Please sign in to comment.