Test: change a describe to it (#959)

master
joehecn 2017-04-17 12:02:32 +08:00 committed by jongleberry
parent cb12aa8ae5
commit 19fc4194b7
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});