From df798791fa44d7a70b2980602c960b4033610536 Mon Sep 17 00:00:00 2001 From: Mike P Date: Sat, 18 Aug 2012 11:47:15 -0300 Subject: [PATCH] Update lib/adapters/neo4j.js removing the change to delete the id property in the cleanup since that fails the unit test --- lib/adapters/neo4j.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/adapters/neo4j.js b/lib/adapters/neo4j.js index e832d8f8..b75c718a 100644 --- a/lib/adapters/neo4j.js +++ b/lib/adapters/neo4j.js @@ -343,8 +343,6 @@ Neo4j.prototype.updateAttributes = function updateAttributes(model, id, data, cb function cleanup(data) { if (!data) return null; - //don't save an id property on update since there is already a node id from neo4j - delete data.id; var res = {}; Object.keys(data).forEach(function (key) { var v = data[key];