vows seems to have removed assert.length, replaced with assert.equal

This commit is contained in:
Gareth Jones
2011-11-16 08:39:07 +11:00
parent 154c0dc299
commit bc665b875e
5 changed files with 9 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ vows.describe('log4js logLevelFilter').addBatch({
return logEvents;
},
'should only pass log events greater than or equal to its own level' : function(logEvents) {
assert.length(logEvents, 2);
assert.equal(logEvents.length, 2);
assert.equal(logEvents[0].data[0], 'this should, though');
assert.equal(logEvents[1].data[0], 'so should this');
}