Skip to content

Commit 6b304ee

Browse files
chore: autoformat with stylua
1 parent 4eb74dc commit 6b304ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/parser/http_parser_spec.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ Authorization: Bearer {{TOKEN}}
326326
}]],
327327
}, req.body)
328328
end)
329-
it("parse with variables in urlencoded body", function ()
329+
it("parse with variables in urlencoded body", function()
330330
vim.env["VAR"] = "variable"
331331
local source = [[POST https://example.com
332332
Content-Type: application/x-www-form-urlencoded
@@ -340,7 +340,7 @@ foo={{VAR}}
340340
---@cast req rest.Request
341341
assert.same({
342342
__TYPE = "raw",
343-
data = "foo=variable"
343+
data = "foo=variable",
344344
}, req.body)
345345
end)
346346
it("parse variable declaration", function()

0 commit comments

Comments
 (0)