@@ -29,9 +29,9 @@ def test_configure(self, mock_diagnostics, attach_mock, sampler_mock, super_mock
2929 sampler_mock .assert_called_once_with (1.0 )
3030 super_mock ()._configure .assert_called_once_with (
3131 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 " ],
3535 sampler = "TEST_SAMPLER" ,
3636 )
3737 mock_diagnostics .info .assert_called_once_with (
@@ -56,9 +56,9 @@ def test_configure_sampler_arg(self, mock_diagnostics, attach_mock, sampler_mock
5656 sampler_mock .assert_called_once_with (0.5 )
5757 super_mock ()._configure .assert_called_once_with (
5858 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 " ],
6262 sampler = "TEST_SAMPLER" ,
6363 )
6464 mock_diagnostics .info .assert_called_once_with (
@@ -80,9 +80,9 @@ def test_configure_preview(self, mock_diagnostics, attach_mock, sampler_mock, su
8080 configurator ._configure ()
8181 sampler_mock .assert_called_once_with (1.0 )
8282 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 " ],
8686 sampler = "TEST_SAMPLER" ,
8787 )
8888 mock_diagnostics .info .assert_called_once_with (
0 commit comments