From 21db9ce2703016d65e11c12c683a95bc7dccb54e Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Wed, 22 Nov 2023 17:39:13 +0100 Subject: [PATCH] chore(test): fix comment wrongly referring to mockbin --- spec/myplugin/02-integration_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/myplugin/02-integration_spec.lua b/spec/myplugin/02-integration_spec.lua index ce2290a..9c7926a 100644 --- a/spec/myplugin/02-integration_spec.lua +++ b/spec/myplugin/02-integration_spec.lua @@ -60,7 +60,7 @@ for _, strategy in helpers.all_strategies() do if strategy ~= "cassandra" then }) -- validate that the request succeeded, response status 200 assert.response(r).has.status(200) - -- now check the request (as echoed by mockbin) to have the header + -- now check the request (as echoed by the mock backend) to have the header local header_value = assert.request(r).has.header("hello-world") -- validate the value of that header assert.equal("this is on a request", header_value)