Merge pull request #1184 from strongloop/fix/chai-assertions

Fix an assertion broke by recent chai upgrade.
This commit is contained in:
Miroslav Bajtoš 2015-03-06 11:30:51 +01:00
commit 4b02fe12d9
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();
});
});