You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/07/10 16:51:04 UTC

[31/50] couchdb commit: updated refs/heads/master to 6526051

Exclude the _rev value when saving in modified server


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/45e88835
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/45e88835
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/45e88835

Branch: refs/heads/master
Commit: 45e88835d4cacda86b94321756369320012d83f7
Parents: 4182a60
Author: Robert Newson <rn...@apache.org>
Authored: Wed May 21 11:16:44 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Wed May 21 11:16:44 2014 +0100

----------------------------------------------------------------------
 share/www/script/test/show_documents.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/45e88835/share/www/script/test/show_documents.js
----------------------------------------------------------------------
diff --git a/share/www/script/test/show_documents.js b/share/www/script/test/show_documents.js
index 3c4b43a..bffd2e4 100644
--- a/share/www/script/test/show_documents.js
+++ b/share/www/script/test/show_documents.js
@@ -451,7 +451,7 @@ couchTests.show_documents = function(debug) {
 
       function() {
         T(db.setDbProperty("_security", {foo: true}).ok);
-        T(db.save(doc).ok);
+        T(db.save({_id:"testdoc",foo:1}).ok);
 
         xhr = CouchDB.request("GET", "/test_suite_db/_design/template/_show/secObj");
         var resp = JSON.parse(xhr.responseText);