From 40f1a263fe9584c6287ee915f6554c6897ae3588 Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Fri, 17 May 2024 22:27:10 +0800 Subject: [PATCH] Update test/common/CryptoUtil.test.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- test/common/CryptoUtil.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/common/CryptoUtil.test.ts b/test/common/CryptoUtil.test.ts index 205dcbf7..ba5fd076 100644 --- a/test/common/CryptoUtil.test.ts +++ b/test/common/CryptoUtil.test.ts @@ -16,7 +16,6 @@ describe('test/common/CryptoUtil.test.ts', () => { // const plainText = 'hello world 中文😄'; const plainText = 'hello world 中文'; const encryptText = encryptRSA(keys.publicKey, plainText); - // console.log(encryptText); assert.equal(decryptRSA(keys.privateKey, encryptText), plainText); }); });