We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caa56ea commit 84eb46aCopy full SHA for 84eb46a
test/diagnose.test.js
@@ -95,6 +95,6 @@ test('Diagnose Skillion Issue', async() => {
95
const building = new Building('201181659', innerData);
96
expect(building.id).toBe('201181659');
97
const urlBase = 'https://api.openstreetmap.org/api/0.6/';
98
- expect(global.fetch.mock.calls[0][0]).toBe(urlBase + 'relation/42/full');
+ expect(global.fetch.mock.calls[0][0]).toBe(urlBase + 'way/201181659/full');
99
expect(global.fetch.mock.calls[1][0]).toBe(urlBase + 'map?bbox=30.4980057,59.9380365,30.4993839,59.9385087');
100
});
0 commit comments