tests: use P2* acronyms, not full-length text

This commit is contained in:
Daniel Cousens 2018-01-17 14:18:16 +11:00
parent f4caaf42e7
commit 5e500910df
2 changed files with 47 additions and 47 deletions

View file

@ -308,7 +308,7 @@ describe('TransactionBuilder', function () {
})
fixtures.invalid.sign.forEach(function (f) {
it('throws on ' + f.exception + (f.description ? ' (' + f.description + ')' : ''), function () {
it('throws ' + f.exception + (f.description ? ' (' + f.description + ')' : ''), function () {
var txb = construct(f, true)
f.inputs.forEach(function (input, index) {
@ -362,7 +362,7 @@ describe('TransactionBuilder', function () {
// if throws on incomplete too, enforce that
if (f.incomplete) {
it('throws if ' + f.exception, function () {
it('throws ' + f.exception, function () {
assert.throws(function () {
var txb
if (f.txHex) {