Skip to content

Commit

Permalink
Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloneearth committed Jun 14, 2018
1 parent 6f69af4 commit c9d106c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ let cmd = require('node-cmd');
// let ProgressBar = require('progress');

program
.version('1.0.1');
.version('1.0.2');

program
.command('new <name>')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitbox-cli",
"version": "1.0.1",
"version": "1.0.2",
"description": "A development framework for Bitcoin Cash",
"author": "@bitboxearth",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/TransactionBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ describe('#TransactionBuilder', () => {
let obj = {};
let decode = transactionBuilder.bip68.decode(fixture.result);
assert.equal(Object.keys(decode)[0], fixture.type);
assert.equal(decode[Object.keys(decode)[0]], fixture.value);
assert.deepEqual(decode[Object.keys(decode)[0]], fixture.value);
});
});
});
Expand Down

0 comments on commit c9d106c

Please sign in to comment.