Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Correct expected error messages in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Phillipson committed Dec 18, 2016
1 parent a353ae8 commit 76a1e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ describe('client API', function() {
};
var ret = Client._parseError(body);
ret.should.be.an.instanceOf(Error);
ret.message.should.equal('Insufficient funds');
ret.message.should.equal('Insufficient funds.');

var body = {
code: 'INSUFFICIENT_FUNDS',
Expand Down Expand Up @@ -4168,7 +4168,7 @@ describe('client API', function() {
proxy.signTxProposal(txp, function(err, txp) {
should.exist(err);
should.not.exist(txp);
err.message.should.equal('Missing private keys to sign');
err.message.should.equal('Missing private keys to sign.');
next(null, txp);
});
},
Expand Down

0 comments on commit 76a1e02

Please sign in to comment.