diff options
author | Robert Newson <rnewson@apache.org> | 2010-08-24 18:03:21 +0000 |
---|---|---|
committer | Robert Newson <rnewson@apache.org> | 2010-08-24 18:03:21 +0000 |
commit | 08f170f241e3ee85b4d10fb0ef47ffb2f8158832 (patch) | |
tree | 6ad490a6600932a9f1b03154b21761803750e882 /share/www | |
parent | 962c2a3c41e37148fb31c9e62d60955f847bc5f6 (diff) |
COUCHDB-870 - attachments.js hangs.
attachments.js is missing a semicolon that causes an infinite loop.
Thanks to Grant Jones for the fix.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@988634 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/test/attachments.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/attachments.js b/share/www/script/test/attachments.js index f3106acb..7ad8bf6f 100644 --- a/share/www/script/test/attachments.js +++ b/share/www/script/test/attachments.js @@ -270,6 +270,6 @@ couchTests.attachments= function(debug) { T(db.save(bin_doc6).ok == true); T(false && "Shouldn't get here!"); } catch (e) { - T(e.error == "missing_stub") + T(e.error == "missing_stub"); } }; |