diff options
author | Maximilian Krambach <[email protected]> | 2018-08-31 13:24:38 +0000 |
---|---|---|
committer | Maximilian Krambach <[email protected]> | 2018-08-31 13:24:38 +0000 |
commit | dacb1197155cb953953b75677c1783df2cba0ed6 (patch) | |
tree | 86c1836f64446936c47904b6dd367b5e1c624325 /lang/js | |
parent | js: cleanup after key import test (diff) | |
download | gpgme-dacb1197155cb953953b75677c1783df2cba0ed6.tar.gz gpgme-dacb1197155cb953953b75677c1783df2cba0ed6.zip |
js: key deletion after test
--
* Yet again some wrong syntax in Browsertests
Diffstat (limited to 'lang/js')
-rw-r--r-- | lang/js/BrowserTestExtension/tests/KeyInfos.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/js/BrowserTestExtension/tests/KeyInfos.js b/lang/js/BrowserTestExtension/tests/KeyInfos.js index 70f07050..553aedb9 100644 --- a/lang/js/BrowserTestExtension/tests/KeyInfos.js +++ b/lang/js/BrowserTestExtension/tests/KeyInfos.js @@ -51,9 +51,9 @@ describe('Key information', function () { const user = result.Keys[0].key.get('userids')[0]; expect(user.get('name')).to.equal( inputvalues.publicKeyNonAscii.userid); - result.Keys[0].delete().then(function (){ + result.Keys[0].key.delete().then(function (){ done(); }); }); }); -});
\ No newline at end of file +}); |