Skip to content

Commit c448e94

Browse files
authored
Update combine_ways.test.js
1 parent 5746cd1 commit c448e94

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

test/combine_ways.test.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,14 @@ test('Test combining 3 ways 1->2->3', () => {
8484

8585
describe('Combine Ways', () => {
8686
test.each([
87-
[[
88-
'<way id="1"><nd ref="1"/><nd ref="2"/></way>',
89-
'<way id="2"><nd ref="3"/><nd ref="4"/></way>',
90-
'<way id="3"><nd ref="4"/><nd ref="1"/></way>',
91-
'<way id="4"><nd ref="2"/><nd ref="3"/></way>',
92-
], 1, 4, 'Test combining 4 ways',
87+
[
88+
[
89+
'<way id="1"><nd ref="1"/><nd ref="2"/></way>',
90+
'<way id="2"><nd ref="3"/><nd ref="4"/></way>',
91+
'<way id="3"><nd ref="4"/><nd ref="1"/></way>',
92+
'<way id="4"><nd ref="2"/><nd ref="3"/></way>',
93+
], 1, 4, 'Test combining 4 ways'
94+
],
9395
])('${description}', (ways, length, nodes, description) => {
9496
let parser = new window.DOMParser();
9597
xml = [];

0 commit comments

Comments
 (0)