From 5ba8d23bcc82f6f877a9b49ab5c5c442feee76b7 Mon Sep 17 00:00:00 2001 From: Meik Date: Wed, 1 Jul 2026 15:00:08 +0200 Subject: [PATCH] test: allow empty isalive wrapper body --- docs/postman/C4IT-F4SD-M42WebApi.postman_collection.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/postman/C4IT-F4SD-M42WebApi.postman_collection.json b/docs/postman/C4IT-F4SD-M42WebApi.postman_collection.json index 461e802..e846176 100644 --- a/docs/postman/C4IT-F4SD-M42WebApi.postman_collection.json +++ b/docs/postman/C4IT-F4SD-M42WebApi.postman_collection.json @@ -169,8 +169,8 @@ "pm.test(\"isAlive returns 204\", function () {", " pm.response.to.have.status(204);", "});", - "pm.test(\"No response body\", function () {", - " pm.expect(pm.response.text()).to.equal(\"\");", + "pm.test(\"No response body or empty Matrix42 wrapper body\", function () {", + " pm.expect([\"\", \"{}\"]).to.include(pm.response.text());", "});" ] }