Skip to content

Commit 029d9d8

Browse files
authored
Update diagnose.test.js
1 parent 6305b9a commit 029d9d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/diagnose.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2373,9 +2373,9 @@ test('Diagnose Skillion Issue', async() => {
23732373
expect(global.fetch.mock.calls[1][0]).toBe(urlBase + 'map?bbox=125.7416897,39.0269534,125.7420811,39.0272423');
23742374
// get building part 1280622582
23752375
const shapes = building.parts;
2376-
for (part of parts){
2377-
if (part.id = '1280622582'){
2378-
shape = part.shape;
2376+
for (const part of parts){
2377+
if (part.id == '1280622582'){
2378+
const shape = part.shape;
23792379
expect(shape.toJSON()).toBe('');
23802380
}
23812381
}

0 commit comments

Comments
 (0)