From 275356a5ce30811a860243e00c20028679ceeb93 Mon Sep 17 00:00:00 2001 From: Slobodan Stojanovic Date: Sat, 31 Oct 2015 14:01:26 +0100 Subject: [PATCH] Remove TODO from the response type test --- test/response/type.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/response/type.js b/test/response/type.js index dc1e2a4..1815c29 100644 --- a/test/response/type.js +++ b/test/response/type.js @@ -55,8 +55,7 @@ describe('ctx.type', function(){ describe('with no Content-Type', function(){ it('should return ""', function(){ const ctx = context(); - // TODO: ctx is lame - assert('' === ctx.type); + assert(!ctx.type); }); });