test: change a describe to it (#963)

master
joehecn 2017-04-20 10:43:06 +08:00 committed by Yiyu He
parent 19fc4194b7
commit 1b3e08e046
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ describe('ctx.length', () => {
req.length.should.equal(10);
});
describe('with no content-length present', () => {
it('with no content-length present', () => {
const req = request();
assert(null == req.length);
});