Skip to content

Commit e89dbd9

Browse files
Update test_knapsack.py
1 parent bd5b301 commit e89dbd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

knapsack/tests/test_knapsack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_base_case(self):
3030

3131
def test_easy_case(self):
3232
"""
33-
test for the base case
33+
test for the easy case
3434
"""
3535
cap = 3
3636
val = [1, 2, 3]
@@ -50,7 +50,7 @@ def test_knapsack(self):
5050

5151
def test_knapsack_repetition(self):
5252
"""
53-
test for the knapsack
53+
test for the knapsack repetition
5454
"""
5555
cap = 50
5656
val = [60, 100, 120]

0 commit comments

Comments
 (0)