[upgrade] change OK to Succeeded in rules test (#145770)

## Summary

Rule "Last response" changed from OK to Succeeded. See
https://github.com/elastic/kibana/issues/136039
This commit is contained in:
Lee Drengenberg 2022-11-18 17:28:53 -06:00 committed by GitHub
parent cf4e74bc5e
commit 73cf0a2ac6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
expect(searchResults[0].name).to.contain(createdRuleName);
expect(searchResults[0].interval).to.equal('1 min');
expect(searchResults[0].status).to.equal('Enabled');
expect(searchResults[0].lastResponse).to.equal('Ok');
expect(searchResults[0].lastResponse).to.equal('Succeeded');
});
});
});