Skip to content

Commit 0013849

Browse files
[CI] Format code
1 parent 2c94840 commit 0013849

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

exercises/practice/list-ops/list-ops.spec.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ describe('concat lists and lists of lists into new list', () => {
4949
const list3 = new List([[]]);
5050
const list4 = new List([[4, 5, 6]]);
5151
const listOfNestedLists = new List([list2, list3, list4]);
52-
expect(list1.concat(listOfNestedLists).values).toEqual([[1], [2], [3], [], [4, 5, 6]]);
52+
expect(list1.concat(listOfNestedLists).values).toEqual([
53+
[1],
54+
[2],
55+
[3],
56+
[],
57+
[4, 5, 6],
58+
]);
5359
});
5460
});
5561

0 commit comments

Comments
 (0)