tests: avoid pointless toASM in description
This commit is contained in:
parent
13d41f67e9
commit
5c53178c3c
@ -91,7 +91,7 @@ describe('Scripts', function() {
|
|||||||
var scriptPubKey = scripts.multisigOutput(pubKeys.length, pubKeys)
|
var scriptPubKey = scripts.multisigOutput(pubKeys.length, pubKeys)
|
||||||
|
|
||||||
describe('input script', function() {
|
describe('input script', function() {
|
||||||
it('is generated correctly for ' + scriptPubKey.toASM(), function() {
|
it('is generated correctly for ' + f.scriptPubKey, function() {
|
||||||
var signatures = f.signatures.map(function(signature) {
|
var signatures = f.signatures.map(function(signature) {
|
||||||
return new Buffer(signature, 'hex')
|
return new Buffer(signature, 'hex')
|
||||||
})
|
})
|
||||||
@ -102,7 +102,7 @@ describe('Scripts', function() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
describe('output script', function() {
|
describe('output script', function() {
|
||||||
it('is generated correctly for ' + scriptPubKey.toASM(), function() {
|
it('is generated correctly for ' + f.scriptPubKey, function() {
|
||||||
assert.equal(scriptPubKey.toASM(), f.scriptPubKey)
|
assert.equal(scriptPubKey.toASM(), f.scriptPubKey)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user