tests: fix assert usage mistake

fixes #2592
This commit is contained in:
Phat 2015-03-14 17:52:47 +07:00 committed by Douglas Christopher Wilson
parent 9d16bae682
commit 1114ca1ab6

View File

@ -12,7 +12,7 @@ describe('app', function(){
it('should be callable', function(){
var app = express();
assert(typeof app, 'function');
assert.equal(typeof app, 'function');
})
it('should 404 without routes', function(done){