mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
dafce9016c
commit
6bb38c82db
1 changed files with 1 additions and 1 deletions
|
@ -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 () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue