Skip to content

Commit 169fec3

Browse files
authored
Update solution.test.ts
1 parent e772f93 commit 169fec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ts/g0201_0300/s0283_move_zeroes/solution.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test('moveZeroes', () => {
88
expect(arr).toEqual([1, 3, 12, 0, 0])
99
})
1010

11-
test('moveZeroes', () => {
11+
test('moveZeroes2', () => {
1212
const arr = [0]
1313
moveZeroes(arr)
1414
expect(arr).toEqual([0])

0 commit comments

Comments
 (0)