Skip to content

Commit 6eb990e

Browse files
committed
🌿 Fix error message in test
@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()`.
1 parent 0a78e35 commit 6eb990e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/denops/testutil/shared_server_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Deno.test("useSharedServer()", async (t) => {
110110
await useSharedServer({ timeout: 0 });
111111
},
112112
Error,
113-
"Deadline",
113+
"Signal timed out",
114114
);
115115
});
116116
});

0 commit comments

Comments
 (0)