Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Sep 21, 2011
1 parent 58abc4b commit 3f434cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/model.querying.test.js
Expand Up @@ -628,9 +628,9 @@ module.exports = {
should.strictEqual(err, null);
should.strictEqual(undefined, found[0]._id);
found[0].title.should.equal('subset 1');
should.strictEqual(undefined, found.def);
should.strictEqual(undefined, found.author);
should.strictEqual(false, Array.isArray(found.comments));
should.strictEqual(undefined, found[0].def);
should.strictEqual(undefined, found[0].author);
should.strictEqual(false, Array.isArray(found[0].comments));
db.close();
});
});
Expand Down

0 comments on commit 3f434cd

Please sign in to comment.