From 778aab104e6822e419a29da8546a1e4f27b106a7 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Wed, 28 May 2014 19:02:57 +1000 Subject: [PATCH] tests: fix #198 indentation --- test/script.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/script.js b/test/script.js index c22361c..1499088 100644 --- a/test/script.js +++ b/test/script.js @@ -122,7 +122,9 @@ describe('Script', function() { }) it('should throw on not enough pubKeys provided', function() { - assert.throws(function() {Script.createMultisigScriptPubKey(4, pubKeys)}, /Not enough pubKeys provided/) + assert.throws(function() { + Script.createMultisigScriptPubKey(4, pubKeys) + }, /Not enough pubKeys provided/) }) })