Fixing test case.
This commit is contained in:
parent
25dba0be35
commit
c51df0eceb
|
@ -160,7 +160,7 @@ describe("internal search", () => {
|
||||||
const response = await search.paginatedSearch(
|
const response = await search.paginatedSearch(
|
||||||
{
|
{
|
||||||
contains: {
|
contains: {
|
||||||
column: "a",
|
column: ["a"],
|
||||||
colArr: [1, 2, 3],
|
colArr: [1, 2, 3],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -168,7 +168,7 @@ describe("internal search", () => {
|
||||||
)
|
)
|
||||||
checkLucene(
|
checkLucene(
|
||||||
response,
|
response,
|
||||||
`(*:* AND column:a AND colArr:(1 AND 2 AND 3))`,
|
`(*:* AND column:(a) AND colArr:(1 AND 2 AND 3))`,
|
||||||
PARAMS
|
PARAMS
|
||||||
)
|
)
|
||||||
})
|
})
|
Loading…
Reference in New Issue