Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgruen committed May 3, 2022
1 parent b493761 commit 2f88394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegens/http/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function getBody (request, trimRequestBody) {
case FORM_DATA:
/* istanbul ignore else */
if (!_.isEmpty(request.body[request.body.mode])) {
requestBody += `--${FORM_DATA_BOUNDARY}\n`
requestBody += `--${FORM_DATA_BOUNDARY}\n`;
let properties = getMembersOfPropertyList(request.body[request.body.mode]);
_.forEach(properties, function (property) {
/* istanbul ignore else */
Expand Down

0 comments on commit 2f88394

Please sign in to comment.