summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);