diff options
Diffstat (limited to 'k6-tests/ncmp/7-search-public-property.js')
-rw-r--r-- | k6-tests/ncmp/7-search-public-property.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/k6-tests/ncmp/7-search-public-property.js b/k6-tests/ncmp/7-search-public-property.js index 6a46a03290..cb39b54d9c 100644 --- a/k6-tests/ncmp/7-search-public-property.js +++ b/k6-tests/ncmp/7-search-public-property.js @@ -18,7 +18,7 @@ * ============LICENSE_END========================================================= */ -import { searchRequest } from './search-base.js'; +import { executeCmHandleSearch } from './search-base.js'; import { makeCustomSummaryReport } from "./utils.js"; export const options = { @@ -31,15 +31,7 @@ export const options = { }; export default function () { - const search_filter = { - "cmHandleQueryParameters": [ - { - "conditionName": "hasAllProperties", - "conditionParameters": [{"Color": "yellow"}, {"Size": "small"}] - } - ] - }; - searchRequest('searches', JSON.stringify(search_filter)); + executeCmHandleSearch('property'); } export function handleSummary(data) { |