From 5062beb99babc76ab325a57e30c317fe1d3ec5ae Mon Sep 17 00:00:00 2001 From: Anatoliy Chakkaev Date: Mon, 24 Dec 2012 22:47:49 +0400 Subject: [PATCH] Travis env update, compare ids as strings --- .travis.yml | 3 --- test/common_test.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a33e0781..84fd7ca2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,3 @@ node_js: - 0.6 - 0.8 - 0.9 -services: - - neo4j - - couchdb diff --git a/test/common_test.js b/test/common_test.js index 5123c478..3caa8890 100644 --- a/test/common_test.js +++ b/test/common_test.js @@ -519,7 +519,7 @@ function testOrm(schema) { if (err) return console.log(err); // test.ok(post.author(), u.id); u.posts(function (err, posts) { - test.equal(posts.pop().id, post.id); + test.equal(posts.pop().id.toString(), post.id.toString()); test.done(); }); });