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:
Gaukas Wang 2023-08-05 12:29:41 -06:00 committed by GitHub
parent 65a944f39a
commit 686d29bc91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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() {