diff --git a/services/data/src/links/RestAPILink/fetchData.test.ts b/services/data/src/links/RestAPILink/fetchData.test.ts index 92e37328..33762b28 100644 --- a/services/data/src/links/RestAPILink/fetchData.test.ts +++ b/services/data/src/links/RestAPILink/fetchData.test.ts @@ -153,7 +153,7 @@ describe('networkFetch', () => { it('Should correctly parse a successful VND.GEOJSON response', () => { ;(global as any).fetch = mockFetch expect(fetchData('vnd.geo+json', {})).resolves.toMatchObject({ - foo: 'geobar', + foo: 'bar', }) })