Skip to content

Commit

Permalink
wip: fix
Browse files Browse the repository at this point in the history
* Related #10

[ci skip]
  • Loading branch information
tegefaulkes committed May 3, 2023
1 parent 6b77915 commit 9467510
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/QUICStream.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ describe(QUICStream.name, () => {
const tlsConfig = await tlsConfigProm;
let server: QUICServer | null = null;
let client: QUICClient | null = null;
const streams: Array<QUICStream> = [];
try {
server = new QUICServer({
crypto,
Expand Down Expand Up @@ -562,7 +561,6 @@ describe(QUICStream.name, () => {
// Lets make a new streams.
for (let i = 0; i < streamsNum; i++) {
const stream = await client.connection.streamNew();
streams.push(stream);
const writer = stream.writable.getWriter();
await writer.write(message);
writer.releaseLock();
Expand Down

0 comments on commit 9467510

Please sign in to comment.