Author: damien Date: Mon Jun 9 14:48:26 2008 New Revision: 665906 URL: http://svn.apache.org/viewvc?rev=665906&view=rev Log: added new line to reduce test to show bulk update failure on safari Modified: incubator/couchdb/trunk/share/www/script/couch_tests.js Modified: incubator/couchdb/trunk/share/www/script/couch_tests.js URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/share/www/script/couch_tests.js?rev=665906&r1=665905&r2=665906&view=diff ============================================================================== --- incubator/couchdb/trunk/share/www/script/couch_tests.js [utf-8] (original) +++ incubator/couchdb/trunk/share/www/script/couch_tests.js [utf-8] Mon Jun 9 14:48:26 2008 @@ -315,6 +315,7 @@ docs.push({keys:["d", "b"]}); docs.push({keys:["d", "c"]}); T(db.bulkSave(docs).ok); + T(db.info().doc_count == ((i - 1) * 10 * 11) + ((j + 1) * 11)); } map = function (doc) {emit(doc.keys, 1)};