mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ES|QL] fix validation test (#178245)
## Summary Due to a merge race condition, some incorrect properties were left in this test. cc @delanni
This commit is contained in:
parent
228e4e287e
commit
0e7adf5dae
1 changed files with 2 additions and 2 deletions
|
@ -1069,7 +1069,7 @@ describe('validation logic', () => {
|
|||
({ name: fnName, signatures: statsSignatures }) =>
|
||||
statsSignatures.some(({ returnType, params }) => ['number'].includes(returnType))
|
||||
)) {
|
||||
for (const { params, infiniteParams, ...signRest } of signatures) {
|
||||
for (const { params, ...signRest } of signatures) {
|
||||
const fieldMapping = getFieldMapping(params);
|
||||
|
||||
testErrorsAndWarnings(
|
||||
|
@ -1246,7 +1246,7 @@ describe('validation logic', () => {
|
|||
}
|
||||
|
||||
for (const { name, alias, signatures, ...defRest } of statsAggregationFunctionDefinitions) {
|
||||
for (const { params, infiniteParams, ...signRest } of signatures) {
|
||||
for (const { params, ...signRest } of signatures) {
|
||||
const fieldMapping = getFieldMapping(params);
|
||||
testErrorsAndWarnings(
|
||||
`from a_index | eval var = ${
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue