@@ -13,7 +13,7 @@ import (
1313	"github.com/rs/cors" 
1414	"github.com/stretchr/testify/assert" 
1515	"github.com/stretchr/testify/require" 
16- 	"go.opentelemetry.io/otel/trace" 
16+ 	"go.opentelemetry.io/otel/trace/noop " 
1717
1818	"github.com/ory/x/configx" 
1919	"github.com/ory/x/logrusx" 
@@ -248,7 +248,7 @@ func TestKoanfProvider(t *testing.T) {
248248		})
249249
250250		t .Run ("authenticator=cookie_session" , func (t  * testing.T ) {
251- 			a  :=  authn .NewAuthenticatorCookieSession (p , logger , trace . NewNoopTracerProvider ())
251+ 			a  :=  authn .NewAuthenticatorCookieSession (p , logger , noop . NewTracerProvider ())
252252			assert .True (t , p .AuthenticatorIsEnabled (a .GetID ()))
253253			require .NoError (t , a .Validate (nil ))
254254
@@ -286,7 +286,7 @@ func TestKoanfProvider(t *testing.T) {
286286		})
287287
288288		t .Run ("authenticator=oauth2_introspection" , func (t  * testing.T ) {
289- 			a  :=  authn .NewAuthenticatorOAuth2Introspection (p , logger , trace . NewNoopTracerProvider ())
289+ 			a  :=  authn .NewAuthenticatorOAuth2Introspection (p , logger , noop . NewTracerProvider ())
290290			assert .True (t , p .AuthenticatorIsEnabled (a .GetID ()))
291291			require .NoError (t , a .Validate (nil ))
292292
@@ -434,7 +434,7 @@ func TestAuthenticatorOAuth2TokenIntrospectionPreAuthorization(t *testing.T) {
434434		{enabled : true , id : "a" , secret : "b" , turl : "https://some-url" , err : false },
435435	} {
436436		t .Run (fmt .Sprintf ("case=%d" , k ), func (t  * testing.T ) {
437- 			a  :=  authn .NewAuthenticatorOAuth2Introspection (p , logrusx .New ("" , "" ), trace . NewNoopTracerProvider ())
437+ 			a  :=  authn .NewAuthenticatorOAuth2Introspection (p , logrusx .New ("" , "" ), noop . NewTracerProvider ())
438438
439439			config , _ , err  :=  a .Config (json .RawMessage (fmt .Sprintf (`{ 
440440	"pre_authorization": { 
0 commit comments