diff --git a/x-pack/test/apm_api_integration/trial/tests/service_maps.ts b/x-pack/test/apm_api_integration/trial/tests/service_maps.ts index a9fbbac057e99..c0a80f4f134ae 100644 --- a/x-pack/test/apm_api_integration/trial/tests/service_maps.ts +++ b/x-pack/test/apm_api_integration/trial/tests/service_maps.ts @@ -15,7 +15,7 @@ export default function serviceMapsApiTests({ getService }: FtrProviderContext) describe('Service Maps', () => { describe('when there is no data', () => { - it('returns data', async () => { + it('returns empty list', async () => { const response = await supertest.get( '/api/apm/service-map?start=2020-06-28T10%3A24%3A46.055Z&end=2020-06-29T10%3A24%3A46.055Z' ); @@ -29,7 +29,7 @@ export default function serviceMapsApiTests({ getService }: FtrProviderContext) before(() => esArchiver.load('8.0.0')); after(() => esArchiver.unload('8.0.0')); - it('returns data', async () => { + it('returns service map elements', async () => { const response = await supertest.get( '/api/apm/service-map?start=2020-06-28T10%3A24%3A46.055Z&end=2020-06-29T10%3A24%3A46.055Z' );