From 8d1a3407894a088078c58bf56830c2ee13ba4a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Rodr=C3=ADguez=20Rodr=C3=ADguez?= Date: Thu, 29 Jan 2015 21:02:07 +0100 Subject: [PATCH] Fix typo on response.body test. Just a small typo. --- test/response/body.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/response/body.js b/test/response/body.js index a093436..edfa01e 100644 --- a/test/response/body.js +++ b/test/response/body.js @@ -68,7 +68,7 @@ describe('res.body=', function(){ assert.equal(res.length, Buffer.byteLength(string)); }) - it('should set length when body is overriden', function(){ + it('should set length when body is overridden', function(){ var string = '

Tobi

'; var res = response(); res.body = string; @@ -129,4 +129,4 @@ describe('res.body=', function(){ assert('application/json; charset=utf-8' == res.header['content-type']); }) }) -}) \ No newline at end of file +})