From 8d02849b688059db02b91541375db76d33e69ff5 Mon Sep 17 00:00:00 2001 From: Ignacio Rivas Date: Fri, 10 Sep 2021 09:03:26 +0200 Subject: [PATCH] Fix test names --- .../overview/fix_logs_step/fix_logs_step.test.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/upgrade_assistant/__jest__/client_integration/overview/fix_logs_step/fix_logs_step.test.tsx b/x-pack/plugins/upgrade_assistant/__jest__/client_integration/overview/fix_logs_step/fix_logs_step.test.tsx index 69dc884ca7d44e..97b55c691c7676 100644 --- a/x-pack/plugins/upgrade_assistant/__jest__/client_integration/overview/fix_logs_step/fix_logs_step.test.tsx +++ b/x-pack/plugins/upgrade_assistant/__jest__/client_integration/overview/fix_logs_step/fix_logs_step.test.tsx @@ -48,7 +48,7 @@ describe('Overview - Fix deprecation logs step', () => { }); describe('Step status', () => { - test(`It's set as complete when there are no deprecation logs since last checkpoint`, async () => { + test(`It's complete when there are no deprecation logs since last checkpoint`, async () => { httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true)); httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 }); @@ -63,7 +63,7 @@ describe('Overview - Fix deprecation logs step', () => { expect(exists(`fixLogsStep-complete`)).toBe(true); }); - test(`It's set as incomplete when there are deprecation logs since last checkpoint`, async () => { + test(`It's incomplete when there are deprecation logs since last checkpoint`, async () => { httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true)); httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 5 }); @@ -78,7 +78,7 @@ describe('Overview - Fix deprecation logs step', () => { expect(exists(`fixLogsStep-incomplete`)).toBe(true); }); - test(`It's set as incomplete when log collection is disabled `, async () => { + test(`It's incomplete when log collection is disabled `, async () => { httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true)); httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 });