From c4d194488c703597949bf0861b8e30ae36f66057 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Thu, 10 Oct 2013 12:42:58 -0700 Subject: [PATCH] fix test label typo --- test/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/context.js b/test/context.js index 5365958..ba916da 100644 --- a/test/context.js +++ b/test/context.js @@ -66,7 +66,7 @@ describe('ctx.body=', function(){ assert.equal(ctx.responseLength, Buffer.byteLength(string)); }) - it('should set length when body is override', function(){ + it('should set length when body is overriden', function(){ var string = '

Tobi

'; var ctx = context(); ctx.body = string;