Skip to content

Commit

Permalink
Merge pull request #495 from Otto-AA/patch-1
Browse files Browse the repository at this point in the history
Fix example in README.md
  • Loading branch information
rimiti committed Sep 5, 2018
2 parents 968cc75 + 1a1549e commit 5ec0b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -111,7 +111,7 @@ describe('POST /user', function() {
.set('Accept', 'application/json')
.expect(function(res) {
res.body.id = 'some fixed id';
res.body.name = res.body.name.toUpperCase();
res.body.name = res.body.name.toLowerCase();
})
.expect(200, {
id: 'some fixed id',
Expand Down

0 comments on commit 5ec0b46

Please sign in to comment.