diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2011-05-17 19:24:56 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2011-05-17 19:24:56 +0000 |
commit | 61c777b873004f795060b5f432cce02402bdf026 (patch) | |
tree | 41ee917be39aced66eb4ffef6fc51aeb8d9e1a72 /share | |
parent | 589a5043e34c3bb98eb97b780fd015e0d1296152 (diff) |
Add missing doc open option to the test for COUCHDB-885
These were forgotten when backporting the attachment related assertions from 1.0.x.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1104481 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r-- | share/www/script/test/replication.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js index ea6713e8..a08c0b66 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -834,7 +834,9 @@ couchTests.replication = function(debug) { TEquals(1, repResult.history[0].docs_read); TEquals(0, repResult.history[0].doc_write_failures); - var copy = dbB.open(doc._id, {conflicts: true, deleted_conflicts: true}); + var copy = dbB.open(doc._id, { + conflicts: true, deleted_conflicts: true, attachments: true, + att_encoding_info: true}); T(copy !== null); TEquals("undefined", typeof copy._conflicts); TEquals("undefined", typeof copy._deleted_conflicts); |