@@ -575,7 +575,7 @@ func TestConcurrentEvaluations(t *testing.T) {
575575func TestSetProviderWithContextAndWaitTimeout (t * testing.T ) {
576576 // Create a provider that doesn't have configuration loaded
577577 // This will cause InitWithContext to wait for configuration
578- provider := newDatadogProvider ()
578+ provider := newDatadogProvider (ProviderConfig {} )
579579
580580 // Use a very short timeout context (50ms)
581581 ctx , cancel := context .WithTimeout (context .Background (), 50 * time .Millisecond )
@@ -599,7 +599,7 @@ func TestSetProviderWithContextAndWaitTimeout(t *testing.T) {
599599
600600func TestSetProviderWithContextAndWaitSuccess (t * testing.T ) {
601601 // Create a provider and set up its configuration immediately
602- provider := newDatadogProvider ()
602+ provider := newDatadogProvider (ProviderConfig {} )
603603 config := createTestConfig ()
604604 provider .updateConfiguration (config )
605605
@@ -634,7 +634,7 @@ func TestSetProviderWithContextAndWaitSuccess(t *testing.T) {
634634
635635func TestShutdownWithContextTimeout (t * testing.T ) {
636636 // Create and configure a provider
637- provider := newDatadogProvider ()
637+ provider := newDatadogProvider (ProviderConfig {} )
638638 config := createTestConfig ()
639639 provider .updateConfiguration (config )
640640
@@ -667,7 +667,7 @@ func TestShutdownWithContextTimeout(t *testing.T) {
667667
668668func TestShutdownWithContextSuccess (t * testing.T ) {
669669 // Create and configure a provider
670- provider := newDatadogProvider ()
670+ provider := newDatadogProvider (ProviderConfig {} )
671671 config := createTestConfig ()
672672 provider .updateConfiguration (config )
673673
0 commit comments