Skip to content

Commit

Permalink
test(async/unstable): fix typo (#6149)
Browse files Browse the repository at this point in the history
  • Loading branch information
familyboat authored Oct 28, 2024
1 parent 8c9b4c6 commit 7ed73ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async/unstable_throttle_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 7ed73ae

Please sign in to comment.