remove debug statements
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/8c76f98b Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/8c76f98b Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/8c76f98b Branch: refs/heads/1.2.x Commit: 8c76f98b2b4d823efc7b2c54ac62ad250808be4e Parents: 46c8488 Author: Jan Lehnardt <[email protected]> Authored: Thu Feb 16 16:37:05 2012 +0100 Committer: Jan Lehnardt <[email protected]> Committed: Tue Feb 21 14:39:05 2012 +0100 ---------------------------------------------------------------------- share/www/script/test/users_db_security.js | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/8c76f98b/share/www/script/test/users_db_security.js ---------------------------------------------------------------------- diff --git a/share/www/script/test/users_db_security.js b/share/www/script/test/users_db_security.js index 6491eaf..81e8d51 100644 --- a/share/www/script/test/users_db_security.js +++ b/share/www/script/test/users_db_security.js @@ -213,13 +213,11 @@ couchTests.users_db_security = function(debug) { TEquals("forbidden", e.error, "non-admins can't read design docs"); } - console.log(fdmananaDoc); // admin should be able to read and edit any user doc fdmananaDoc.password = "mobile"; var result = save_as(usersDb, fdmananaDoc, "jan"); TEquals(true, result.ok, "admin should be able to update any user doc"); - console.log(fdmananaDoc); // admin should be able to read and edit any user doc fdmananaDoc.password = "mobile1"; var result = save_as(usersDb, fdmananaDoc, "benoitc");
