mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove the testserver package
This commit is contained in:
parent
dde21d2f72
commit
07dcbc8496
13 changed files with 171 additions and 202 deletions
|
@ -8,7 +8,6 @@ import (
|
|||
"sync"
|
||||
|
||||
quic "github.com/lucas-clemente/quic-go"
|
||||
"github.com/lucas-clemente/quic-go/integrationtests/tools/testserver"
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
|
@ -49,7 +48,7 @@ var _ = Describe("Bidirectional streams", func() {
|
|||
for i := 0; i < numStreams; i++ {
|
||||
str, err := sess.OpenStreamSync(context.Background())
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
data := testserver.GeneratePRData(25 * i)
|
||||
data := GeneratePRData(25 * i)
|
||||
go func() {
|
||||
defer GinkgoRecover()
|
||||
_, err := str.Write(data)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue