summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2009-02-03 10:53:36 +0000
committerJan Lehnardt <jan@apache.org>2009-02-03 10:53:36 +0000
commit7cef17ccd45128143731ceef1aa7121815e9aa9d (patch)
treef1c112bc07cbadc6498e1adffb1dbd9ca878f905 /share
parent941933ed3d1ae7247e4a27c54efb92bdcbd188a8 (diff)
Do not change local.ini during test suite run. Patch by BradfordW. Thanks.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@740269 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/couch_tests.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index db1bccf0..3998bcf0 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -2974,7 +2974,8 @@ var tests = {
// test that settings can be altered
xhr = CouchDB.request("PUT", "/_config/test/foo",{
- body : JSON.stringify("bar")
+ body : JSON.stringify("bar"),
+ headers: {"X-Couch-Persist": "false"}
});
T(xhr.status == 200);
xhr = CouchDB.request("GET", "/_config/test");