diff --git a/x-pack/plugins/apm/public/context/url_params_context/helpers.test.ts b/x-pack/plugins/apm/public/context/url_params_context/helpers.test.ts index ef1c9d38725b6bb..3dc077c407545fb 100644 --- a/x-pack/plugins/apm/public/context/url_params_context/helpers.test.ts +++ b/x-pack/plugins/apm/public/context/url_params_context/helpers.test.ts @@ -166,7 +166,7 @@ describe('url_params_context helpers', () => { }); ['s', 'm', 'h', 'd', 'w'].map((roundingOption) => - it(`removes /${roundingOption} rounding option from relative time`, () => { + it(`doesn't remove /${roundingOption} rounding option when time is not added or subtracted`, () => { const spy = jest.spyOn(datemath, 'parse'); helpers.getExactDate(`now/${roundingOption}`); expect(spy).toHaveBeenCalledWith(`now/${roundingOption}`, {});