Skip to content

Commit

Permalink
[QA] Fix wrong bracket in ccs test (elastic#191222)
Browse files Browse the repository at this point in the history
## Summary

Had a square bracket instead of a curly bracket, hence the request in
the dev console was failing.
  • Loading branch information
marius-dr authored Aug 28, 2024
1 parent dafce90 commit 6bb38c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 6bb38c8

Please sign in to comment.