Skip to content

Commit

Permalink
chore: update stream test
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Nov 13, 2023
1 parent 7ca199c commit ef12e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/stream.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ describe('stream', () => {
// the window capacities should have refilled via window updates as received data was consumed

// eslint-disable-next-line @typescript-eslint/dot-notation
expect(c1['sendWindowCapacity']).to.be.gt(defaultConfig.initialStreamWindowSize)
expect(c1['sendWindowCapacity']).to.be.gte(defaultConfig.initialStreamWindowSize)
// eslint-disable-next-line @typescript-eslint/dot-notation
expect(s1['recvWindowCapacity']).to.be.gt(defaultConfig.initialStreamWindowSize)
expect(s1['recvWindowCapacity']).to.be.gte(defaultConfig.initialStreamWindowSize)
})

it('test many streams', async () => {
Expand Down

0 comments on commit ef12e31

Please sign in to comment.