From 8c75808d2d699cb918a5374fdd6fa52abc6b2ba1 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Fri, 2 Jan 2026 05:33:22 +0100 Subject: [PATCH] Update test/backend-test/notification-providers/test-ntlm.js --- test/backend-test/notification-providers/test-ntlm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/backend-test/notification-providers/test-ntlm.js b/test/backend-test/notification-providers/test-ntlm.js index 35ef95c8..a12d7514 100644 --- a/test/backend-test/notification-providers/test-ntlm.js +++ b/test/backend-test/notification-providers/test-ntlm.js @@ -5,7 +5,7 @@ const hash = require("../../server/modules/axios-ntlm/lib/hash"); describe("createPseudoRandomValue()", () => { test("returns a hexadecimal string with the requested length", () => { - for (const length of [0, 8, 16, 32, 64]) { + for (const length of [ 0, 8, 16, 32, 64 ]) { const result = hash.createPseudoRandomValue(length); assert.strictEqual(typeof result, "string"); assert.strictEqual(result.length, length);