diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-10-23 15:51:56 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-10-23 15:53:03 +0100 |
commit | d612628bae7c468ef69dc04a1fed89d3ba4b8f34 (patch) | |
tree | 5dc55cd72c6be9c004e6f6331f610a545fad7fe0 | |
parent | 26559ef91557ae602fc3e8f2304f7bc6c57b6fbb (diff) |
Resize cps expectation
- set expectation to 70 (cmhanldes/second) for discovery case
Issue-ID: CPS-2350
Change-Id: I3d0f9f5e20de87f79ebbe569c7905f4eefed35e8
Signed-off-by: halil.cakal <halil.cakal@est.tech>
-rw-r--r-- | k6-tests/ncmp/common/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/k6-tests/ncmp/common/utils.js b/k6-tests/ncmp/common/utils.js index 7873732361..a429675aaf 100644 --- a/k6-tests/ncmp/common/utils.js +++ b/k6-tests/ncmp/common/utils.js @@ -85,7 +85,7 @@ export function makeCustomSummaryReport(testResults, scenarioConfig) { const summaryCsvLines = [ '#,Test Name,Unit,Fs Requirement,Current Expectation,Actual', makeSummaryCsvLine('0', 'HTTP request failures for all tests', 'rate of failed requests', 'http_req_failed', 0, testResults, scenarioConfig), - makeSummaryCsvLine('1', 'Registration of CM-handles', 'CM-handles/second', 'cmhandles_created_per_second', 110, testResults, scenarioConfig), + makeSummaryCsvLine('1', 'Registration of CM-handles', 'CM-handles/second', 'cmhandles_created_per_second', 70, testResults, scenarioConfig), makeSummaryCsvLine('2', 'De-registration of CM-handles', 'CM-handles/second', 'cmhandles_deleted_per_second', 90, testResults, scenarioConfig), makeSummaryCsvLine('3a', 'CM-handle ID search with No filter', 'milliseconds', 'id_search_nofilter_duration', 400, testResults, scenarioConfig), makeSummaryCsvLine('3b', 'CM-handle ID search with Module filter', 'milliseconds', 'id_search_module_duration', 200, testResults, scenarioConfig), |