From 02e15395d8f4fa43e135e48d321c89cc9622a1a8 Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Fri, 30 Jan 2009 04:57:44 +0000 Subject: 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 --- share/www/script/couch_tests.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'share/www/script/couch_tests.js') 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) { -- cgit v1.2.3