diff options
-rw-r--r-- | share/www/script/couch_tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index 57bce657..7c48a79a 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -709,7 +709,7 @@ var tests = { var rev = JSON.parse(xhr.responseText).rev; binAttDoc2 = db.open("bin_doc2"); - console.log(JSON.stringify(binAttDoc2)); + T(binAttDoc2._attachments["foo.txt"] !== undefined); T(binAttDoc2._attachments["foo2.txt"] !== undefined); T(binAttDoc2._attachments["foo2.txt"].content_type == "text/plain;charset=utf-8"); |