summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/www/script/couch_tests.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js
index c65e98b5..852f9cfe 100644
--- a/share/www/script/couch_tests.js
+++ b/share/www/script/couch_tests.js
@@ -1331,14 +1331,13 @@ var tests = {
T(xhr.status == 202);
// compaction isn't instantaneous, loop until done
while (db.info().compact_running) {};
-
+
+ restartServer();
var xhr = CouchDB.request("GET", "/test_suite_db/bin_doc/foo.txt");
T(xhr.responseText == "This is a base64 encoded text")
T(xhr.getResponseHeader("Content-Type") == "text/plain")
-
- var compactedsize = db.info().disk_size;
-
- T(compactedsize < deletesize);
+ T(db.info().doc_count == 1);
+ T(db.info().disk_size < deletesize);
}
};