From 2031191261c1c7fd44393899a230a6fe54f77e58 Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Thu, 11 Feb 2016 13:13:58 +0100 Subject: [PATCH] testing=false --- www/common/chainpad.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/common/chainpad.js b/www/common/chainpad.js index 01aae63f9..cf6193df8 100644 --- a/www/common/chainpad.js +++ b/www/common/chainpad.js @@ -372,7 +372,7 @@ var random = Patch.random = function (doc, opCount) { var PARANOIA = module.exports.PARANOIA = false; /* throw errors over non-compliant messages which would otherwise be treated as invalid */ -var TESTING = module.exports.TESTING = true; +var TESTING = module.exports.TESTING = false; var assert = module.exports.assert = function (expr) { if (!expr) { throw new Error("Failed assertion"); } @@ -1283,7 +1283,7 @@ var clone = Operation.clone = function (op) { /** * @param op the operation to apply. - * @param doc the content to apply the operation on + * @param doc the content to apply the operation on */ var apply = Operation.apply = function (op, doc) {