mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix: failed tests due to a bad searching criterion (#5)
... and fix two bad reference link to quic-go's repo: they were not meant to be found with uquic.
This commit is contained in:
parent
65a944f39a
commit
686d29bc91
2 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ import (
|
|||
func areConnsRunning() bool {
|
||||
var b bytes.Buffer
|
||||
pprof.Lookup("goroutine").WriteTo(&b, 1)
|
||||
return strings.Contains(b.String(), "quic-go.(*connection).run")
|
||||
return strings.Contains(b.String(), "uquic.(*connection).run")
|
||||
}
|
||||
|
||||
var _ = Describe("Connection", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue