From 888d3e8af327e13b7519f1e1b9439c7ba327ccac Mon Sep 17 00:00:00 2001 From: Hayden Young Date: Fri, 17 May 2024 03:35:38 +0100 Subject: [PATCH] fix: Linting. --- test/oplog/log.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/oplog/log.test.js b/test/oplog/log.test.js index d3bd3eb..cb19ade 100644 --- a/test/oplog/log.test.js +++ b/test/oplog/log.test.js @@ -146,10 +146,10 @@ describe('Log', function () { it('encrypts the value of an entry in the log', async () => { const keys = await keystore.createKey('hello1') - + const privateKey = await keystore.getKey('hello1') const publicKey = await keystore.getPublic(keys) - + const encryptFn = encrypt({ publicKey }) const decryptFn = decrypt({ privateKey }) const log = await Log(testIdentity, { encryptFn, decryptFn })