@@ -29,9 +29,9 @@ def test_configure(self, mock_diagnostics, attach_mock, sampler_mock, super_mock
29
29
sampler_mock .assert_called_once_with (1.0 )
30
30
super_mock ()._configure .assert_called_once_with (
31
31
auto_instrumentation_version = "TEST_VERSION" ,
32
- trace_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
33
- metric_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
34
- log_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
32
+ trace_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
33
+ metric_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
34
+ log_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
35
35
sampler = "TEST_SAMPLER" ,
36
36
)
37
37
mock_diagnostics .info .assert_called_once_with (
@@ -56,9 +56,9 @@ def test_configure_sampler_arg(self, mock_diagnostics, attach_mock, sampler_mock
56
56
sampler_mock .assert_called_once_with (0.5 )
57
57
super_mock ()._configure .assert_called_once_with (
58
58
auto_instrumentation_version = "TEST_VERSION" ,
59
- trace_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
60
- metric_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
61
- log_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
59
+ trace_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
60
+ metric_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
61
+ log_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
62
62
sampler = "TEST_SAMPLER" ,
63
63
)
64
64
mock_diagnostics .info .assert_called_once_with (
@@ -80,9 +80,9 @@ def test_configure_preview(self, mock_diagnostics, attach_mock, sampler_mock, su
80
80
configurator ._configure ()
81
81
sampler_mock .assert_called_once_with (1.0 )
82
82
super_mock ()._configure .assert_called_once_with (
83
- trace_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
84
- metric_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
85
- log_exporter_names = ["azure-monitor-opentelemetry-exporter " ],
83
+ trace_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
84
+ metric_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
85
+ log_exporter_names = ["azure_monitor_opentelemetry_exporter " ],
86
86
sampler = "TEST_SAMPLER" ,
87
87
)
88
88
mock_diagnostics .info .assert_called_once_with (
0 commit comments