diff --git a/test/common_test.js b/test/common_test.js index 9d022ff8..723f1bea 100644 --- a/test/common_test.js +++ b/test/common_test.js @@ -403,7 +403,7 @@ function testOrm(schema) { if (err) return console.log(err); // test.ok(post.author(), u.id); u.posts(function (err, posts) { - test.strictEqual(posts.pop().id, post.id); + test.equal(posts.pop().id, post.id); test.done(); }); });