Skip to content

Commit 3e1a889

Browse files
committed
Fix
1 parent c0c64b9 commit 3e1a889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/dynamicprogramming/WineProblemTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void testSamePriceWines() {
7171
*/
7272
@Test
7373
void testNoWines() {
74-
int[] wines = {}; // No wines
74+
int[] wines = {};
7575
assertThrows(IllegalArgumentException.class, () -> WineProblem.wpbu(wines),
7676
"The maximum profit for no wines should throw an IllegalArgumentException.");
7777
}

0 commit comments

Comments
 (0)