We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb74dc commit 6b304eeCopy full SHA for 6b304ee
spec/parser/http_parser_spec.lua
@@ -326,7 +326,7 @@ Authorization: Bearer {{TOKEN}}
326
}]],
327
}, req.body)
328
end)
329
- it("parse with variables in urlencoded body", function ()
+ it("parse with variables in urlencoded body", function()
330
vim.env["VAR"] = "variable"
331
local source = [[POST https://example.com
332
Content-Type: application/x-www-form-urlencoded
@@ -340,7 +340,7 @@ foo={{VAR}}
340
---@cast req rest.Request
341
assert.same({
342
__TYPE = "raw",
343
- data = "foo=variable"
+ data = "foo=variable",
344
345
346
it("parse variable declaration", function()
0 commit comments