diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/www/script/couch_tests.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index 8aa9ad15..28a1b9f4 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -577,9 +577,8 @@ var tests = { } // Check _all_docs with descending=true again (now that there are many docs) - // this fails, see COUCHDB-109 - // var desc = db.allDocs({descending:true}); - // T(desc.total_rows == desc.rows.length); + var desc = db.allDocs({descending:true}); + T(desc.total_rows == desc.rows.length); }, reduce: function(debug) { |