@@ -302,7 +302,7 @@ func TestProxyHandle_RequestDeadlineExceeded_GRPC(t *testing.T) {
302
302
select {
303
303
case <- tunnel .Done ():
304
304
t .Log ("Tunnel closed successfully" )
305
- case <- time .After (wait .ForeverTestTimeout ):
305
+ case <- time .After (framework .ForeverTestTimeout ):
306
306
t .Errorf ("Timed out waiting for tunnel to close" )
307
307
}
308
308
}()
@@ -352,7 +352,7 @@ func TestProxyDial_RequestCancelled_GRPC(t *testing.T) {
352
352
353
353
select {
354
354
case <- tunnel .Done ():
355
- case <- time .After (wait .ForeverTestTimeout ):
355
+ case <- time .After (framework .ForeverTestTimeout ):
356
356
t .Errorf ("Timed out waiting for tunnel to close" )
357
357
}
358
358
}()
@@ -415,7 +415,7 @@ func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
415
415
416
416
select {
417
417
case <- tunnel .Done ():
418
- case <- time .After (wait .ForeverTestTimeout ):
418
+ case <- time .After (framework .ForeverTestTimeout ):
419
419
t .Errorf ("Timed out waiting for tunnel to close" )
420
420
}
421
421
}
@@ -441,7 +441,7 @@ func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
441
441
442
442
// Wait for the closed connections to propogate
443
443
var endpointConnsErr , goLeaksErr error
444
- wait .PollImmediate (time .Second , wait .ForeverTestTimeout , func () (done bool , err error ) {
444
+ wait .PollImmediate (time .Second , framework .ForeverTestTimeout , func () (done bool , err error ) {
445
445
endpointConnsErr = a .Metrics ().ExpectAgentEndpointConnections (0 )
446
446
goLeaksErr = goleak .Find (ignoredGoRoutines ... )
447
447
return endpointConnsErr == nil && goLeaksErr == nil , nil
@@ -503,7 +503,7 @@ func TestProxyDial_AgentTimeout_GRPC(t *testing.T) {
503
503
504
504
select {
505
505
case <- tunnel .Done ():
506
- case <- time .After (wait .ForeverTestTimeout ):
506
+ case <- time .After (framework .ForeverTestTimeout ):
507
507
t .Errorf ("Timed out waiting for tunnel to close" )
508
508
}
509
509
}()
@@ -979,7 +979,7 @@ func waitForConnectedServerCount(t testing.TB, expectedServerCount int, a framew
979
979
// agents (backends). This assumes the ProxyServer is using a single ProxyStrategy.
980
980
func waitForConnectedAgentCount (t testing.TB , expectedAgentCount int , ps framework.ProxyServer ) {
981
981
t .Helper ()
982
- err := wait .PollImmediate (100 * time .Millisecond , wait .ForeverTestTimeout , func () (bool , error ) {
982
+ err := wait .PollImmediate (100 * time .Millisecond , framework .ForeverTestTimeout , func () (bool , error ) {
983
983
count , err := ps .ConnectedBackends ()
984
984
if err != nil {
985
985
return false , err
0 commit comments