Skip to content

Commit c1630a1

Browse files
test(algorithms, graphs): fix test case
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 96ab97e commit c1630a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/subsets/find_all_subsets/test_find_all_subsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
[1, 2, 3, 4],
3333
],
3434
),
35-
([3, 6, 9], [[], [3], [6], [9], [3, 6], [3, 9], [6, 9], [3, 6, 9]]),
35+
([3, 6, 9], [[], [3], [3, 6], [3, 6, 9], [3, 9], [6], [6, 9], [9]]),
3636
]
3737

3838

0 commit comments

Comments
 (0)