Skip to content

Commit c0faa7c

Browse files
Fixes from PR review
1 parent ea2c667 commit c0faa7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugins/security_solution/server/graphql/source_status/resolvers.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
import { filterIndexes } from './resolvers';
88

99
describe('resolvers', () => {
10-
test('it should filter single index that is has an empty string', () => {
10+
test('it should filter single index that has an empty string', () => {
1111
const emptyArray = filterIndexes(['']);
1212
expect(emptyArray).toEqual([]);
1313
});
1414

15-
test('it should filter single index that is has blanks within it', () => {
15+
test('it should filter single index that has blanks within it', () => {
1616
const emptyArray = filterIndexes([' ']);
1717
expect(emptyArray).toEqual([]);
1818
});

0 commit comments

Comments
 (0)