summaryrefslogtreecommitdiff
path: root/share/www/script/test/view_update_seq.js
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-11-18 13:20:14 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-11-18 13:20:14 +0000
commit3cf27c815bf0db1ed81e0acdd94b2f0d816c1585 (patch)
tree23801e632f36c899d60a5e689bae478d8781efb4 /share/www/script/test/view_update_seq.js
parent46fc40a196a65f9bcded818f9a111edff0ec9576 (diff)
JavaScript tests: avoid global variable declarations.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1036447 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test/view_update_seq.js')
-rw-r--r--share/www/script/test/view_update_seq.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/view_update_seq.js b/share/www/script/test/view_update_seq.js
index c347839d..69b8c42d 100644
--- a/share/www/script/test/view_update_seq.js
+++ b/share/www/script/test/view_update_seq.js
@@ -18,7 +18,7 @@ couchTests.view_update_seq = function(debug) {
T(db.info().update_seq == 0);
- resp = db.allDocs({update_seq:true});
+ var resp = db.allDocs({update_seq:true});
T(resp.rows.length == 0);
T(resp.update_seq == 0);