You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/29 18:21:01 UTC

couchdb commit: updated refs/heads/master to a242f10

Repository: couchdb
Updated Branches:
  refs/heads/master 4ad8de2ba -> a242f106a


correct order for test params


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/a242f106
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/a242f106
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/a242f106

Branch: refs/heads/master
Commit: a242f106a2afc51b4788cc62daef752458c4fcfa
Parents: 4ad8de2
Author: Robert Newson <rn...@apache.org>
Authored: Fri Aug 29 16:47:59 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Fri Aug 29 16:47:59 2014 +0100

----------------------------------------------------------------------
 share/www/script/test/stats.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/a242f106/share/www/script/test/stats.js
----------------------------------------------------------------------
diff --git a/share/www/script/test/stats.js b/share/www/script/test/stats.js
index afc2ef5..3ffc991 100644
--- a/share/www/script/test/stats.js
+++ b/share/www/script/test/stats.js
@@ -101,7 +101,7 @@ couchTests.stats = function(debug) {
       
       var open_dbs = getStat("couchdb", "open_databases").value;
       TEquals(open_dbs > 0, true, "We actually opened some dbs.");
-      TEquals(open_dbs, max, "We only have max db's open.");
+      TEquals(max, open_dbs, "We only have max db's open.");
       
       for(var i = 0; i < max * 2; i++) {
         newDb("test_suite_db_" + i).deleteDb();