Skip to content

Commit

Permalink
🌿 Fix error message in test
Browse files Browse the repository at this point in the history
@std/async/deadline changes it's internal implementation and the error
has changed from `DeadlineError` to `DOMException` with `Signal timed
out` error originated from `AbortSignal.timeout()`.
  • Loading branch information
lambdalisue committed Jul 27, 2024
1 parent 0a78e35 commit 6eb990e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/denops/testutil/shared_server_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Deno.test("useSharedServer()", async (t) => {
await useSharedServer({ timeout: 0 });
},
Error,
"Deadline",
"Signal timed out",
);
});
});
Expand Down

0 comments on commit 6eb990e

Please sign in to comment.