Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9A770447E for ; Tue, 17 May 2011 19:25:19 +0000 (UTC) Received: (qmail 14679 invoked by uid 500); 17 May 2011 19:25:19 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 14647 invoked by uid 500); 17 May 2011 19:25:19 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 14640 invoked by uid 99); 17 May 2011 19:25:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2011 19:25:19 +0000 X-ASF-Spam-Status: No, hits=-1996.4 required=5.0 tests=ALL_TRUSTED,FS_REPLICA X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2011 19:25:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6FFFF2388A32; Tue, 17 May 2011 19:24:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1104481 - /couchdb/branches/1.1.x/share/www/script/test/replication.js Date: Tue, 17 May 2011 19:24:56 -0000 To: commits@couchdb.apache.org From: fdmanana@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110517192456.6FFFF2388A32@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fdmanana Date: Tue May 17 19:24:56 2011 New Revision: 1104481 URL: http://svn.apache.org/viewvc?rev=1104481&view=rev Log: Add missing doc open option to the test for COUCHDB-885 These were forgotten when backporting the attachment related assertions from 1.0.x. Modified: couchdb/branches/1.1.x/share/www/script/test/replication.js Modified: couchdb/branches/1.1.x/share/www/script/test/replication.js URL: http://svn.apache.org/viewvc/couchdb/branches/1.1.x/share/www/script/test/replication.js?rev=1104481&r1=1104480&r2=1104481&view=diff ============================================================================== --- couchdb/branches/1.1.x/share/www/script/test/replication.js (original) +++ couchdb/branches/1.1.x/share/www/script/test/replication.js Tue May 17 19:24:56 2011 @@ -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);