1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Fixing test case.

This commit is contained in:
mike12345567 2024-04-17 14:05:47 +01:00
parent 25dba0be35
commit c51df0eceb

View file

@ -160,7 +160,7 @@ describe("internal search", () => {
const response = await search.paginatedSearch(
{
contains: {
column: "a",
column: ["a"],
colArr: [1, 2, 3],
},
},
@ -168,7 +168,7 @@ describe("internal search", () => {
)
checkLucene(
response,
`(*:* AND column:a AND colArr:(1 AND 2 AND 3))`,
`(*:* AND column:(a) AND colArr:(1 AND 2 AND 3))`,
PARAMS
)
})