From c39d310b066523f4e447c5f6800d6a9fb4eb8233 Mon Sep 17 00:00:00 2001 From: Kyle Pollich Date: Tue, 5 Dec 2023 12:29:09 -0500 Subject: [PATCH] Fix test case names --- x-pack/plugins/fleet/common/services/output_helpers.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/fleet/common/services/output_helpers.test.ts b/x-pack/plugins/fleet/common/services/output_helpers.test.ts index ceab8edfff1681..96ef82459492d8 100644 --- a/x-pack/plugins/fleet/common/services/output_helpers.test.ts +++ b/x-pack/plugins/fleet/common/services/output_helpers.test.ts @@ -87,13 +87,13 @@ describe('outputYmlIncludesReservedPerformanceKey', () => { }); describe('plain string', () => { - it('returns false when no reserved key is present', () => { + it('returns true when reserved key is present', () => { const configYml = `bulk_max_size`; expect(outputYmlIncludesReservedPerformanceKey(configYml)).toBe(true); }); - it('returns true when reserved key is present', () => { + it('returns false when no reserved key is present', () => { const configYml = `just a string`; expect(outputYmlIncludesReservedPerformanceKey(configYml)).toBe(false);