diff options
author | John Christopher Anderson <jchris@apache.org> | 2009-01-30 04:57:44 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2009-01-30 04:57:44 +0000 |
commit | 02e15395d8f4fa43e135e48d321c89cc9622a1a8 (patch) | |
tree | a485852702fe295d5ebc5bcb0844a60b1225cd3e /share/www | |
parent | 38ba90e827fcc1105cb513c66f189eaea4436462 (diff) |
all_docs view with descending=true works properly now. fix COUCHDB-109
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@739170 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-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) { |