From 19fc4194b782f0ff47b719c3c9c1122c5e7f9ca1 Mon Sep 17 00:00:00 2001 From: joehecn Date: Mon, 17 Apr 2017 12:02:32 +0800 Subject: [PATCH] Test: change a describe to it (#959) --- test/request/type.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/request/type.js b/test/request/type.js index b18c5fe..f8e1c85 100644 --- a/test/request/type.js +++ b/test/request/type.js @@ -11,7 +11,7 @@ describe('req.type', () => { req.type.should.equal('text/html'); }); - describe('with no host present', () => { + it('with no host present', () => { const req = request(); assert('' === req.type); });