From a6ef4aa3ec659e86977b05c6a87bfbe20eca3199 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Sun, 21 Apr 2024 22:51:46 +0200 Subject: [PATCH] fixup! refactor: simply use of siinon fake timers --- test/share-socket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/share-socket.ts b/test/share-socket.ts index 72b46709..43877d7a 100644 --- a/test/share-socket.ts +++ b/test/share-socket.ts @@ -439,7 +439,7 @@ describe('share-socket', function () { const req = request(`coap://localhost:${port + 1}`) req.end() - function fastForward (increase: number, max: number): void { + function fastForward (increase, max): void { clock.tick(increase) if (increase < max) { fastForward(increase, max - increase)