From 6463b1cd3b52f7b8a0bbaa838ae7b29da9f458e4 Mon Sep 17 00:00:00 2001 From: Maximilian Krambach Date: Thu, 6 Sep 2018 10:11:10 +0200 Subject: js: fix error in toKeyIdArray -- * src/Helpers.js: GPGME_Keys were not parsed as valid, as their fingerprint getter is not a fingerprint 'property'. * BrowserTestExtension: fixed a dsplay typo in counting of tests. --- lang/js/BrowserTestExtension/tests/longRunningTests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lang/js/BrowserTestExtension/tests') diff --git a/lang/js/BrowserTestExtension/tests/longRunningTests.js b/lang/js/BrowserTestExtension/tests/longRunningTests.js index 1d710e31..f28a6e78 100644 --- a/lang/js/BrowserTestExtension/tests/longRunningTests.js +++ b/lang/js/BrowserTestExtension/tests/longRunningTests.js @@ -34,9 +34,9 @@ describe('Long running Encryption/Decryption', function () { }); }); - for (let i=0; i < 101; i++) { + for (let i=1; i < 101; i++) { it('Successful encrypt/decrypt completely random data ' - + (i+1) + '/100', function (done) { + + (i) + '/100', function (done) { const data = bigString(2*1024*1024); context.encrypt({ data: data, publicKeys: good_fpr }) .then(function (answer){ -- cgit v1.2.3