From 689f444bdf423af9a5241eabfd96c9c98573f363 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Thu, 19 Mar 2015 11:08:56 +1100 Subject: [PATCH] tests: fix standard format adherence --- test/eckey.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/eckey.js b/test/eckey.js index e3dbe44..0e56fb5 100644 --- a/test/eckey.js +++ b/test/eckey.js @@ -1,10 +1,10 @@ -/* global describe, it, beforeEach, afterEach */ +/* global describe, it */ /* eslint-disable no-new */ var assert = require('assert') var ecurve = require('ecurve') var networks = require('../src/networks') -var proxyquire = require('proxyquire') +var proxyquire = require('proxyquire') var randomBytes = require('randombytes') var BigInteger = require('bigi') @@ -102,7 +102,7 @@ describe('ECKey', function () { var exBuffer = exPrivKey.d.toBuffer(32) it("uses the RNG provided by the 'randombytes' module by default", function () { - var stub = { randombytes: function() { return exBuffer } } + var stub = { randombytes: function () { return exBuffer } } var ProxiedECKey = proxyquire('../src/eckey', stub) var privKey = ProxiedECKey.makeRandom()