This commit is contained in:
Ivan Socolsky 2015-01-28 12:16:19 -03:00
parent 50e936379f
commit c7562f8aa5
1 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ describe('Copay server', function() {
});
};
describe('#_verifyMessageSignature', function() {
describe('#verifyMessageSignature', function() {
beforeEach(function() {
server = new CopayServer({
storage: storage,
@ -357,7 +357,7 @@ describe('Copay server', function() {
signature: 'dummy',
};
server.verifyMessageSignature(opts, function (err, isValid) {
err.should.exist;
err.should.equal('Copayer not found');
done();
});
});