Skip to content

Commit 393cacf

Browse files
Update test_knapsack.py
1 parent ed5483f commit 393cacf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

knapsack/tests/test_knapsack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_knapsack(self):
4646
val = [60, 100, 120]
4747
w = [10, 20, 30]
4848
c = len(val)
49-
assert k.knapsack(cap, w, val, c, False) == 220
49+
assert k.knapsack(cap, w, val, c) == 220
5050

5151
def test_knapsack_repetition(self):
5252
"""

0 commit comments

Comments
 (0)