mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix flaky HTTP/3 request body test (#3447)
This commit is contained in:
parent
4c96cf75bf
commit
6fbc6d951a
1 changed files with 3 additions and 1 deletions
|
@ -797,9 +797,11 @@ var _ = Describe("Client", func() {
|
|||
<-done
|
||||
return 0, errors.New("test done")
|
||||
})
|
||||
str.EXPECT().Close()
|
||||
closed := make(chan struct{})
|
||||
str.EXPECT().Close().Do(func() { close(closed) })
|
||||
_, err := client.RoundTripOpt(req, RoundTripOpt{})
|
||||
Expect(err).To(MatchError("test done"))
|
||||
Eventually(closed).Should(BeClosed())
|
||||
})
|
||||
|
||||
It("sets the Content-Length", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue