tests: avoid pointless toASM in description
This commit is contained in:
parent
13d41f67e9
commit
5c53178c3c
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ describe('Scripts', function() {
|
|||
var scriptPubKey = scripts.multisigOutput(pubKeys.length, pubKeys)
|
||||
|
||||
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) {
|
||||
return new Buffer(signature, 'hex')
|
||||
})
|
||||
|
@ -102,7 +102,7 @@ describe('Scripts', 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)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue