From 875f413306e566543f9c17dfbf615a5f9aa224fe Mon Sep 17 00:00:00 2001 From: Cassidy Scheffer Date: Wed, 16 Oct 2024 16:45:02 -0400 Subject: [PATCH] fix typo --- k6/integration-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k6/integration-test.js b/k6/integration-test.js index 58d2197..d5e3b1c 100644 --- a/k6/integration-test.js +++ b/k6/integration-test.js @@ -79,7 +79,7 @@ export function teardown(_data) { const count = JSON.parse(res.body).count; console.log(`📊 Total operations: ${count}`); check(count, { - "usage-api received 200 operations": (count) => count === REQUEST_COUNT, + "usage-api received 1000 operations": (count) => count === REQUEST_COUNT, }); }