summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2017-03-20 15:06:46 +0100
committerJan Lehnardt <jan@apache.org>2017-03-20 15:22:01 +0100
commitdad47829b3ea535e433996c5a6c629c039e40092 (patch)
treeb61b18c7d481b4c2733f4c35b6c628f713f2d45d
parent6d44bb0ac1b36f23edabb938f29493f44b1e92af (diff)
downloadcouchdb-dad47829b3ea535e433996c5a6c629c039e40092.tar.gz
chore: whitespace
-rw-r--r--test/javascript/tests/replication.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/javascript/tests/replication.js b/test/javascript/tests/replication.js
index 6393acf70..3d53dc691 100644
--- a/test/javascript/tests/replication.js
+++ b/test/javascript/tests/replication.js
@@ -15,7 +15,7 @@ couchTests.replication = function(debug) {
if (debug) debugger;
var host = CouchDB.host;
- // as we change names during execution, do NOT use test_suite_db or a
+ // as we change names during execution, do NOT use test_suite_db or a
// pre-computed value like ''+sourceDb.name (compute only on use)
var sourceDb;
var targetDb;
@@ -60,17 +60,17 @@ couchTests.replication = function(debug) {
return data;
}
-
+
function runAllNodes(callback) {
// new and fancy: clustered version: pull cluster_members and walk over all of them
- var xhr = CouchDB.request("GET", "/_membership");
+ var xhr = CouchDB.request("GET", "/_membership");
T(xhr.status === 200);
JSON.parse(xhr.responseText).cluster_nodes.forEach(callback);
}
function runFirstNode(callback) {
// new and fancy: clustered version: pull cluster_members and walk over all of them
- var xhr = CouchDB.request("GET", "/_membership");
+ var xhr = CouchDB.request("GET", "/_membership");
T(xhr.status === 200);
var node = JSON.parse(xhr.responseText).cluster_nodes[0];
return callback(node);
@@ -132,7 +132,7 @@ couchTests.replication = function(debug) {
sourceDb.deleteDb();
}
sourceDb = new CouchDB(get_random_db_name() + "_src",{"X-Couch-Full-Commit":"false"});
- sourceDb.createDb();
+ sourceDb.createDb();
}
for (var i = 0; i < docs.length; i++) {
var doc = docs[i];
@@ -1892,6 +1892,6 @@ couchTests.replication = function(debug) {
//usersDb.deleteDb();
sourceDb.deleteDb();
targetDb.deleteDb();
- // (not sure what this is - cleanup after 'file not found tests' poss. - not harmful anyway)
+ // (not sure what this is - cleanup after 'file not found tests' poss. - not harmful anyway)
(new CouchDB("test_suite_db")).deleteDb();
};