From 2b5ea87e8806b4eae9c9b6524acfa81e32da199e Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 11 Mar 2026 08:40:58 -0600 Subject: [PATCH] Fix chat assertion --- petshop-api.postman_collection.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/petshop-api.postman_collection.json b/petshop-api.postman_collection.json index c8fa07ca..6ecec217 100644 --- a/petshop-api.postman_collection.json +++ b/petshop-api.postman_collection.json @@ -2590,7 +2590,8 @@ " pm.response.to.have.status(201);", "});", "var jsonData = pm.response.json();", - "pm.expect(jsonData.senderRole).to.eql('STAFF');" + "pm.expect(jsonData.senderId).to.exist;", + "pm.expect(jsonData.content).to.eql('Reply from Postman');" ] } }