From 0495842faebaef71713963ce4980051238b7f234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 9 Dec 2024 18:25:31 -0500 Subject: [PATCH] lint: missing semi --- test/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.js b/test/utils.js index 370c05d298..2d3edb7ff0 100644 --- a/test/utils.js +++ b/test/utils.js @@ -119,7 +119,7 @@ describe('Utility Methods', () => { }); it('should always return 3', () => { - const { secureRandom } = require('../src/utils') + const { secureRandom } = require('../src/utils'); const r1 = secureRandom(3, 3); assert.strictEqual(r1, 3); });