From 08f170f241e3ee85b4d10fb0ef47ffb2f8158832 Mon Sep 17 00:00:00 2001 From: Robert Newson Date: Tue, 24 Aug 2010 18:03:21 +0000 Subject: 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 --- share/www/script/test/attachments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share') 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"); } }; -- cgit v1.2.3