[QA] Fix wrong bracket in ccs test (#191222)

## Summary

Had a square bracket instead of a curly bracket, hence the request in
the dev console was failing.
This commit is contained in:
Marius Dragomir 2024-08-28 13:56:09 -04:00 committed by GitHub
parent dafce9016c
commit 6bb38c82db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ export default function ({ getService, getPageObjects }) {
});
it('it should be able to access remote data', async () => {
await PageObjects.console.monaco.enterText(
'\nGET ftr-remote:makelogs工程-*/_search\n {\n "query": {\n "bool": {\n "must": [\n {"match": {"extension" : "jpg"} \n}\n}\n}\n}\n}'
'\nGET ftr-remote:makelogs工程-*/_search\n {\n "query": {\n "bool": {\n "must": [\n {"match": {"extension" : "jpg"} \n}\n]\n}\n}\n}'
);
await PageObjects.console.clickPlay();
await retry.try(async () => {