From 7241e51398e5953c267335aa445db7896cd3c377 Mon Sep 17 00:00:00 2001 From: HyBer <59885141+BBboy01@users.noreply.github.com> Date: Sun, 17 Sep 2023 16:31:51 +0800 Subject: [PATCH] style: update format --- test/base64.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/base64.js b/test/base64.js index ca724a6..b8cc59a 100644 --- a/test/base64.js +++ b/test/base64.js @@ -55,7 +55,7 @@ describe ('Base64.js', function() { it ('can decode Base64-encoded input', function() { for (let i = 0; i < 255; i++) { const char = String.fromCharCode(i); - assert.strictEqual (atob(btoa (char)), char); + assert.strictEqual (atob (btoa(char)), char); } assert.strictEqual (atob (''), ''); assert.strictEqual (atob ('Zg=='), 'f');