summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2014-08-29 16:47:59 +0100
committerRobert Newson <rnewson@apache.org>2014-08-29 16:47:59 +0100
commita242f106a2afc51b4788cc62daef752458c4fcfa (patch)
treeb40361f172753fc57c71dd42bf075e23abf34afc
parent4ad8de2baefa471c3beb0cacfc67569deb1bad99 (diff)
downloadcouchdb-a242f106a2afc51b4788cc62daef752458c4fcfa.tar.gz
correct order for test params
-rw-r--r--share/www/script/test/stats.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/stats.js b/share/www/script/test/stats.js
index afc2ef5e4..3ffc99198 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();