Skip to content

Commit d7a4f4f

Browse files
authored
Update utils.test.js
1 parent 661a862 commit d7a4f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe('isSelfIntersecting', () => {
8282
['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="1"/></way>', false, 'closed non-intersecting'],
8383
['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="2"/></way>', true, 'open intersecting'],
8484
['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="4"/><nd ref="3"/><nd ref="1"/></way>', true, 'closed intersecting'],
85-
])(${description}, (way, expected, description) => {
85+
])('${description}', (way, expected, description) => {
8686
let parser = new window.DOMParser();
8787
let xml = parser.parseFromString(way, 'text/xml').getElementsByTagName('way')[0];
8888
expect(BuildingShapeUtils.isSelfIntersecting(xml)).toBe(expected);

0 commit comments

Comments
 (0)