[client] fix WaitStreamConnected test call after ctx signature change (#6503)

watchdog_test.go called WaitStreamConnected() without the context.Context
argument added in #6443, breaking the signal client test build.
This commit is contained in:
Zoltan Papp
2026-06-22 15:53:11 +02:00
committed by GitHub
parent ac9529ea8c
commit e84f6527f7

View File

@@ -65,7 +65,7 @@ func TestReceiveProbeRoundTrips(t *testing.T) {
streamReady := make(chan struct{})
go func() {
client.WaitStreamConnected()
client.WaitStreamConnected(ctx)
close(streamReady)
}()
select {