Skip to content

Commit

Permalink
fix test to be backwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlog committed Oct 5, 2021
1 parent 27c39b7 commit c2577cf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
it('for the kql filtering for united.endpoint.host.hostname : "Host-ku5jy6j0pw", table shows 1 item', async () => {
const adminSearchBar = await testSubjects.find('adminSearchBar');
await adminSearchBar.clearValueWithKeyboard();
await adminSearchBar.type('united.endpoint.host.hostname : "Host-ku5jy6j0pw" ');
await adminSearchBar.type(
'united.endpoint.host.hostname : "Host-ku5jy6j0pw" or host.hostname : "Host-003ex9rih7" '
);
const querySubmitButton = await testSubjects.find('querySubmitButton');
await querySubmitButton.click();
const expectedDataFromQuery = [
Expand Down

0 comments on commit c2577cf

Please sign in to comment.