Skip to content

Commit 8d02849

Browse files
committed
Fix test names
1 parent 849eb2e commit 8d02849

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugins/upgrade_assistant/__jest__/client_integration/overview/fix_logs_step/fix_logs_step.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('Overview - Fix deprecation logs step', () => {
4848
});
4949

5050
describe('Step status', () => {
51-
test(`It's set as complete when there are no deprecation logs since last checkpoint`, async () => {
51+
test(`It's complete when there are no deprecation logs since last checkpoint`, async () => {
5252
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
5353
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 });
5454

@@ -63,7 +63,7 @@ describe('Overview - Fix deprecation logs step', () => {
6363
expect(exists(`fixLogsStep-complete`)).toBe(true);
6464
});
6565

66-
test(`It's set as incomplete when there are deprecation logs since last checkpoint`, async () => {
66+
test(`It's incomplete when there are deprecation logs since last checkpoint`, async () => {
6767
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
6868
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 5 });
6969

@@ -78,7 +78,7 @@ describe('Overview - Fix deprecation logs step', () => {
7878
expect(exists(`fixLogsStep-incomplete`)).toBe(true);
7979
});
8080

81-
test(`It's set as incomplete when log collection is disabled `, async () => {
81+
test(`It's incomplete when log collection is disabled `, async () => {
8282
httpRequestsMockHelpers.setUpdateDeprecationLoggingResponse(getLoggingResponse(true));
8383
httpRequestsMockHelpers.setLoadDeprecationLogsCountResponse({ count: 0 });
8484

0 commit comments

Comments
 (0)