Browse Source

tests: fix standard format adherence

hk-custom-address
Daniel Cousens 10 years ago
parent
commit
689f444bdf
  1. 4
      test/eckey.js

4
test/eckey.js

@ -1,4 +1,4 @@
/* global describe, it, beforeEach, afterEach */
/* global describe, it */
/* eslint-disable no-new */
var assert = require('assert')
@ -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()

Loading…
Cancel
Save