diff --git a/Readme.md b/Readme.md index 3ef0138b..dd4b6f5f 100644 --- a/Readme.md +++ b/Readme.md @@ -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',