From 9fb7353e08a81d101f5b71843c08410b62fe7139 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Thu, 5 Mar 2020 10:25:33 +0100 Subject: [PATCH] fix --- test/encryption.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/encryption.js b/test/encryption.js index af0e2ad..d283fd0 100644 --- a/test/encryption.js +++ b/test/encryption.js @@ -25,7 +25,7 @@ test ('fail decryption', (t) => { test ('rethrow decryption', (t) => { const enc = crypto.encrypt_aes ('foo', 'bar'); t.throws (() => { - const dec = crypto.decrypt_aes (enc, 'baz', true); + crypto.decrypt_aes (enc, 'baz', true); }); });