Merge pull request #1184 from strongloop/fix/chai-assertions
Fix an assertion broke by recent chai upgrade.
This commit is contained in:
commit
4b02fe12d9
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue