From 7ed73ae147630228e6f3f2732d86cceb385e84ef Mon Sep 17 00:00:00 2001 From: familyboat <84062528+familyboat@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:03:38 +0800 Subject: [PATCH] test(async/unstable): fix typo (#6149) --- async/unstable_throttle_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async/unstable_throttle_test.ts b/async/unstable_throttle_test.ts index bfa38ea5f..b37c993ae 100644 --- a/async/unstable_throttle_test.ts +++ b/async/unstable_throttle_test.ts @@ -47,7 +47,7 @@ Deno.test("throttle() handles cancelled", () => { assertEquals(t.lastExecution, NaN); }); -Deno.test("debounce() handles flush", () => { +Deno.test("throttle() handles flush", () => { let called = 0; let arg = ""; const t = throttle((_arg) => {