Skip to content

Commit

Permalink
Fix test case names
Browse files Browse the repository at this point in the history
  • Loading branch information
kpollich committed Dec 5, 2023
1 parent 61c4d3b commit c39d310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugins/fleet/common/services/output_helpers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c39d310

Please sign in to comment.