Day 01: API client

Message fail in testresult sending Submit collection Day01: API client in 15 days of Postman with the message “Request body updated | AssertionError: check payload: expected ‘{\r\n “payload”: "hello world! The…’ to not include ‘hello world!’”

Under test the payload is “payload”: “The first test!”

Different values sent with teh same results.

Added _ in front of ‘check payload’…
pm.test(“Request body updated”, () => {
let request = folder.item.find(req => {return req.name === “echo”})
pm.expect(request.request.body.raw, ‘check payload’).does.not.include(“**_**hello world!”)
pass += 1
})