diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-28 15:17:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 15:17:55 -0400 |
commit | ea28a088a473083cb759a3264235005a25450cbc (patch) | |
tree | 26a23ec5399638e2131eaacf5280830d17f98358 /std/ws/test.ts | |
parent | f899d76667e9a3d96a685c2e920adf17a6d448bf (diff) |
Remove Conn.closeRead (#4970)
Diffstat (limited to 'std/ws/test.ts')
-rw-r--r-- | std/ws/test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/std/ws/test.ts b/std/ws/test.ts index 0d4541f62..c6e74dadc 100644 --- a/std/ws/test.ts +++ b/std/ws/test.ts @@ -276,7 +276,6 @@ test("[ws] ws.close() should use 1000 as close code", async () => { function dummyConn(r: Reader, w: Writer): Conn { return { rid: -1, - closeRead: (): void => {}, closeWrite: (): void => {}, read: (x): Promise<number | null> => r.read(x), write: (x): Promise<number> => w.write(x), |