Skip to content

Commit

Permalink
follow a suggestion at CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
kikyomits committed Nov 16, 2019
1 parent c0306ba commit ab81dfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/common/app.common.ts
Expand Up @@ -102,7 +102,7 @@ export function routes(app) {
metadata: req.body.metadata,
});
});
app.post('/v1/pets_charset', function (req, res, next) {
app.post('/v1/pets_charset', function (req, res) {
// req.file is the `avatar` file
// req.body will hold the text fields, if there were any
res.json({
Expand Down
2 changes: 1 addition & 1 deletion test/multipart.spec.ts
Expand Up @@ -90,7 +90,7 @@ describe(packageJson.name, () => {
.set('Accept', 'application/json; charset=utf-8')
.send({
name: "myPet",
tag: "cat"
tag: "cat",
})
.expect(200));
})
Expand Down

0 comments on commit ab81dfa

Please sign in to comment.