summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2011-05-17 19:24:56 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2011-05-17 19:24:56 +0000
commit61c777b873004f795060b5f432cce02402bdf026 (patch)
tree41ee917be39aced66eb4ffef6fc51aeb8d9e1a72
parent589a5043e34c3bb98eb97b780fd015e0d1296152 (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
-rw-r--r--share/www/script/test/replication.js4
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);