diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-05-09 03:51:33 +0800 |
---|---|---|
committer | Frankie <frankie.diamond@gmail.com> | 2019-05-09 03:51:33 +0800 |
commit | 094e4cf555c698bfef50ca6679cd1e98f4ea9aa1 (patch) | |
tree | cd2b1df66e2a00cc7c24f2c09e28f28f10262a43 /test/unit/app/edge-encryptor-test.js | |
parent | ef8a07c2ce2b1c5fc4ef18f48592b2e7da178c44 (diff) | |
download | tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar.gz tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar.bz2 tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar.lz tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar.xz tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.tar.zst tangerine-wallet-browser-094e4cf555c698bfef50ca6679cd1e98f4ea9aa1.zip |
Check for unused function arguments (#6583)
* eslint: Check for unused function arguments
* eslint: Ignore unused '_' in argument list
Also allow any number of '_' e.g., '__' or '___' which is to be used sparingly
* Remove and rename unused arguments
Diffstat (limited to 'test/unit/app/edge-encryptor-test.js')
-rw-r--r-- | test/unit/app/edge-encryptor-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/app/edge-encryptor-test.js b/test/unit/app/edge-encryptor-test.js index 1a6255b36..52817cd09 100644 --- a/test/unit/app/edge-encryptor-test.js +++ b/test/unit/app/edge-encryptor-test.js @@ -83,7 +83,7 @@ describe('EdgeEncryptor', function () { edgeEncryptor.encrypt(password, data) .then(function (encryptedData) { edgeEncryptor.decrypt('wrong password', encryptedData) - .then(function (decryptedData) { + .then(function () { assert.fail('could decrypt with wrong password') done() }) |