Browse Source

tests: use hardcoded fixture instead of relying on fixture[0]

hk-custom-address
Daniel Cousens 9 years ago
committed by Daniel Cousens
parent
commit
11079bfafb
  1. 4
      test/transaction.js

4
test/transaction.js

@ -99,14 +99,12 @@ describe('Transaction', function () {
describe('addInput', function () { describe('addInput', function () {
var prevTxHash var prevTxHash
beforeEach(function () { beforeEach(function () {
var f = fixtures.valid[0] prevTxHash = new Buffer('ffffffff00ffff000000000000000000000000000000000000000000101010ff', 'hex')
prevTxHash = new Buffer(f.hash, 'hex')
}) })
it('accepts a transaction hash', function () { it('accepts a transaction hash', function () {
var tx = new Transaction() var tx = new Transaction()
tx.addInput(prevTxHash, 0) tx.addInput(prevTxHash, 0)
assert.deepEqual(tx.ins[0].hash, prevTxHash) assert.deepEqual(tx.ins[0].hash, prevTxHash)
}) })

Loading…
Cancel
Save