@@ -16,6 +16,7 @@ import (
1616 "github.com/mariomac/guara/pkg/test"
1717 "github.com/stretchr/testify/require"
1818
19+ ti "go.opentelemetry.io/obi/pkg/test/integration"
1920 "go.opentelemetry.io/obi/test/integration/components/docker"
2021 "go.opentelemetry.io/obi/test/integration/components/jaeger"
2122 "go.opentelemetry.io/obi/test/integration/components/prom"
@@ -48,16 +49,16 @@ func testSelectiveExports(t *testing.T) {
4849 // this with a proper check to see if the target process has finished
4950 // being instrumented
5051 test .Eventually (t , 3 * time .Minute , func (t require.TestingT ) {
51- doHTTPGet (t , "http://localhost:5001/b" , 200 )
52+ ti . DoHTTPGet (t , "http://localhost:5001/b" , 200 )
5253 bTraces := getTraces ("service-b" , "/b" )
5354 require .NotNil (t , bTraces )
5455 })
5556
5657 // Run couple of requests to make sure we flush out any transactions that might be
5758 // stuck because of our tracking of full request times
5859 for i := 0 ; i < 10 ; i ++ {
59- doHTTPGet (t , "http://localhost:5000/a" , 200 )
60- doHTTPGet (t , "http://localhost:5001/b" , 200 )
60+ ti . DoHTTPGet (t , "http://localhost:5000/a" , 200 )
61+ ti . DoHTTPGet (t , "http://localhost:5001/b" , 200 )
6162 }
6263
6364 test .Eventually (t , testTimeout , func (t require.TestingT ) {
0 commit comments