summaryrefslogtreecommitdiff
path: root/share/www/script/test/recreate_doc.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/www/script/test/recreate_doc.js')
-rw-r--r--share/www/script/test/recreate_doc.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/share/www/script/test/recreate_doc.js b/share/www/script/test/recreate_doc.js
index ca64265d..75e34618 100644
--- a/share/www/script/test/recreate_doc.js
+++ b/share/www/script/test/recreate_doc.js
@@ -29,11 +29,7 @@ couchTests.recreate_doc = function(debug) {
T(db.save(doc).ok);
doc = db.open("foo");
doc.a = "baz";
- try {
- T(db.save(doc).ok);
- } finally {
- // And now, we can't even delete the document anymore :/
- T(db.deleteDoc(doc).rev != undefined);
- }
+ T(db.save(doc).ok);
+ T(db.deleteDoc(doc).rev != undefined);
}
};