From a1d3de1d9c611064f806fcb398db8fb7f4ade837 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Fri, 7 May 2021 21:12:40 +0200 Subject: [PATCH] chore: fix typo in comment (#368) --- test/get-client.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/get-client.test.js b/test/get-client.test.js index 16fa09c8..ee005b2a 100644 --- a/test/get-client.test.js +++ b/test/get-client.test.js @@ -175,7 +175,7 @@ test('Use the same throttler for endpoints in the same rate limit group', async // `issues.createComment` should be called `coreRate` ms after `repos.createRelease` t.true(inRange(d - c, coreRate - 50, coreRate + 50)); - // The first search should be called immediatly as it uses a different throttler + // The first search should be called immediately as it uses a different throttler t.true(inRange(e - d, -50, 50)); // The second search should be called only after `searchRate` ms t.true(inRange(f - e, searchRate - 50, searchRate + 50));