summaryrefslogtreecommitdiff
path: root/share/www/script/test/view_conflicts.js
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2009-08-16 17:32:34 +0000
committerJan Lehnardt <jan@apache.org>2009-08-16 17:32:34 +0000
commit8385f5dc3167578bd24806d21a5f0f1f6ec3250b (patch)
tree18d43a4f32f84ec9d1fb810a08cf377bf66401c2 /share/www/script/test/view_conflicts.js
parentfa7efcbf4108c560f273fbd6f42fc4c18168eb61 (diff)
make tests fast again, use X-Couch-Full-Commit:false for all db operations
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@804727 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test/view_conflicts.js')
-rw-r--r--share/www/script/test/view_conflicts.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/test/view_conflicts.js b/share/www/script/test/view_conflicts.js
index 0a3b8812..96f97d56 100644
--- a/share/www/script/test/view_conflicts.js
+++ b/share/www/script/test/view_conflicts.js
@@ -11,10 +11,10 @@
// the License.
couchTests.view_conflicts = function(debug) {
- var dbA = new CouchDB("test_suite_db_a");
+ var dbA = new CouchDB("test_suite_db_a", {"X-Couch-Full-Commit":"false"});
dbA.deleteDb();
dbA.createDb();
- var dbB = new CouchDB("test_suite_db_b");
+ var dbB = new CouchDB("test_suite_db_b", {"X-Couch-Full-Commit":"false"});
dbB.deleteDb();
dbB.createDb();
if (debug) debugger;