Skip to content

Commit 6df7b66

Browse files
test(algorithms, two-pointers, move_zeroes): update type hint in test
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent e899c0b commit 6df7b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/two_pointers/move_zeroes/test_move_zeroes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
class MoveZeroesTestCase(unittest.TestCase):
1919
@parameterized.expand(MOVE_ZEROES_TEST_CASES)
20-
def test_move_zeroes(self, nums: List[int], expected: [List]):
20+
def test_move_zeroes(self, nums: List[int], expected: List[int]):
2121
move_zeroes(nums)
2222
self.assertEqual(expected, nums)
2323

0 commit comments

Comments
 (0)