summaryrefslogtreecommitdiff
path: root/share/www/script/test/basics.js
diff options
context:
space:
mode:
authorJohn Christopher Anderson <jchris@apache.org>2009-06-04 19:10:28 +0000
committerJohn Christopher Anderson <jchris@apache.org>2009-06-04 19:10:28 +0000
commit9e500dad920f9dc7348208a55367037a6af3a8b5 (patch)
tree49747315d0598e846419ca9424c0520dad0ef65c /share/www/script/test/basics.js
parenta4c345dd4f58d0fffdddf8b5f6e67eeb196d6dbc (diff)
doh. remove console.log
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@781830 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test/basics.js')
-rw-r--r--share/www/script/test/basics.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/share/www/script/test/basics.js b/share/www/script/test/basics.js
index 19a7e015..47e94d2c 100644
--- a/share/www/script/test/basics.js
+++ b/share/www/script/test/basics.js
@@ -65,7 +65,6 @@ couchTests.basics = function(debug) {
// make sure you can do a seq=true option
var doc = db.open(id, {local_seq:true});
- console.log(doc._local_seq)
T(doc._local_seq == 1);
@@ -139,7 +138,6 @@ couchTests.basics = function(debug) {
// make sure we can still open the old rev of the deleted doc
T(db.open(existingDoc._id, {rev: existingDoc._rev}) != null);
- console.log("db.info: " + db.info.update_seq),
// make sure restart works
T(db.ensureFullCommit().ok);
restartServer();