diff options
author | Jan Lehnardt <jan@apache.org> | 2008-05-19 20:34:18 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2008-05-19 20:34:18 +0000 |
commit | 2178d96a2f5d2103676d0319c07d1f6bb904b97c (patch) | |
tree | 90f86fea28e32015f15d70c8209b884a87a885b6 /share | |
parent | 6fe2707d20e96453acf9e99813d786ff5cf7ad65 (diff) |
revert.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@657964 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r-- | share/www/script/couch_tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index bdb4fcca..7b35cf87 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -970,7 +970,7 @@ var tests = { function makeDocs(start, end, templateDoc) { var templateDocSrc = templateDoc ? templateDoc.toSource() : "{}" var docs = [] - for(var i=start; i<=end; i++) { + for(var i=start; i<end; i++) { var newDoc = eval("(" + templateDocSrc + ")"); newDoc._id = (i).toString(); newDoc.integer = i |