fix assert is not defined issue

This commit is contained in:
Sanjana Rajan 2017-11-27 22:07:32 -08:00
parent e2c15fe558
commit a724649f30

View File

@ -1146,8 +1146,8 @@ describe('Key', function() {
it('Throw user friendly error when reformatting encrypted key', () => {
return openpgp.generateKey({numBits: 1024, userIds: 'test1 <a@b.com>', passphrase: '1234'}).then(function(original) {
return openpgp.reformatKey({privateKey: original.key, userIds: 'test2 <b@a.com>', passphrase: '1234'}).then(function(newKey) {
assert.fail('reformatKey should result in error when key not decrypted');
return openpgp.reformatKey({privateKey: original.key, userIds: 'test2 <b@a.com>', passphrase: '1234'}).then(function() {
throw new Error('reformatKey should result in error when key not decrypted');
}).catch(function(error) {
expect(error.message).to.equal('Error reformatting keypair: Key not decrypted');
});