Skip to content

Commit

Permalink
Fix example in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Otto-AA committed Aug 2, 2018
1 parent 5209703 commit 1a1549e
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 1a1549e

Please sign in to comment.