From 202162e05b6ca9ee4448dc098e522a00b9895cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lud=C4=9Bk=20Nov=C3=BD?= <13610612+ludeknovy@users.noreply.github.com> Date: Wed, 6 Sep 2023 20:39:56 +0200 Subject: [PATCH] fix --- src/tests/integration/items.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/integration/items.spec.ts b/src/tests/integration/items.spec.ts index 19973e10..5936c735 100644 --- a/src/tests/integration/items.spec.ts +++ b/src/tests/integration/items.spec.ts @@ -59,7 +59,7 @@ describe("Items", () => { .post(`/api/projects/test-project-1/scenarios/test-scenario/items/${itemId}/stop-async`) .set(__tokenHeaderKey__, token) .set("Accept", "application/json") - .send({ environment: "test" }) + .send({ status: "1" }) .expect(StatusCode.NotFound) }) })