test(async/unstable): fix typo (#6149)

This commit is contained in:
familyboat 2024-10-28 13:03:38 +08:00 committed by GitHub
parent 8c9b4c6972
commit 7ed73ae147
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) => {