From 1a301b536eb233cf08af15136baee7080014e73e Mon Sep 17 00:00:00 2001 From: Michael Holtzman Date: Wed, 10 Feb 2016 20:46:11 -0500 Subject: [PATCH] Fix typo in README example --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index a3b2f6c2..daf1b43f 100644 --- a/Readme.md +++ b/Readme.md @@ -38,7 +38,7 @@ app.get('/user', function(req, res){ request(app) .get('/user') .expect('Content-Type', /json/) - .expect('Content-Length', '20') + .expect('Content-Length', '15') .expect(200) .end(function(err, res){ if (err) throw err;