Fix an assertion broke by recent chai upgrade.

This commit is contained in:
Miroslav Bajtoš 2015-03-06 11:22:30 +01:00
parent e59493ec40
commit f57086d5f2
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ describe('Replication / Change APIs', function() {
{ where: { checkpoint: { gte: cp } } },
function(err, changes) {
if (err) return done(err);
expect(changes).to.be.empty();
expect(changes).to.have.length(0);
done();
});
});