diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-07-02 18:05:18 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-07-02 18:05:18 +0000 |
commit | 494c6b6883b2fdc5539df3a4b7d11fba4a136668 (patch) | |
tree | be01d2789d6f155e108885107923f5661ea6ea57 /share/www | |
parent | 68d0f4da12adf8435743e8e890c4e079a4f0f40b (diff) |
fix a query parameter in the list_views.js test
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@960078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/test/list_views.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/list_views.js b/share/www/script/test/list_views.js index c72370bd..f826b46f 100644 --- a/share/www/script/test/list_views.js +++ b/share/www/script/test/list_views.js @@ -220,7 +220,7 @@ couchTests.list_views = function(debug) { T(etag1 != etag2, "POST to map _list generates key-depdendent ETags"); // test the richness of the arguments - xhr = CouchDB.request("GET", "/test_suite_db/_design/lists/_list/basicJSON/basicView"); + xhr = CouchDB.request("GET", "/test_suite_db/_design/lists/_list/basicJSON/basicView?update_seq=true"); T(xhr.status == 200, "standard get should be 200"); var resp = JSON.parse(xhr.responseText); TEquals(10, resp.head.total_rows); |