@@ -89,7 +89,7 @@ def setUp(self) -> None:
89
89
TEST_MACHINE_NAME ,
90
90
)
91
91
@patch (
92
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
92
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
93
93
return_value = TEST_CUSTOMER_IKEY ,
94
94
)
95
95
@patch (
@@ -122,7 +122,7 @@ def test_log_status_success(self, mock_get_customer_ikey, mock_getpid):
122
122
TEST_MACHINE_NAME ,
123
123
)
124
124
@patch (
125
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
125
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
126
126
return_value = TEST_CUSTOMER_IKEY ,
127
127
)
128
128
@patch (
@@ -155,7 +155,7 @@ def test_log_status_failed_initialization(self, mock_get_customer_ikey, mock_get
155
155
TEST_MACHINE_NAME ,
156
156
)
157
157
@patch (
158
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
158
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
159
159
return_value = TEST_CUSTOMER_IKEY ,
160
160
)
161
161
@patch (
@@ -188,7 +188,7 @@ def test_log_status_no_reason(self, mock_get_customer_ikey, mock_getpid):
188
188
TEST_MACHINE_NAME ,
189
189
)
190
190
@patch (
191
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
191
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
192
192
return_value = TEST_CUSTOMER_IKEY ,
193
193
)
194
194
@patch (
@@ -221,7 +221,7 @@ def test_disabled_log_status_success(self, mock_get_customer_ikey, mock_getpid):
221
221
TEST_MACHINE_NAME ,
222
222
)
223
223
@patch (
224
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
224
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
225
225
return_value = TEST_CUSTOMER_IKEY ,
226
226
)
227
227
@patch (
@@ -254,7 +254,7 @@ def test_disabled_log_status_failed_initialization(self, mock_get_customer_ikey,
254
254
TEST_MACHINE_NAME ,
255
255
)
256
256
@patch (
257
- "azure.monitor.opentelemetry.distro._diagnostics._status_logger.get_customer_ikey" ,
257
+ "azure.monitor.opentelemetry.distro._diagnostics._status_logger.ConnectionStringConstants. get_customer_ikey" ,
258
258
return_value = TEST_CUSTOMER_IKEY ,
259
259
)
260
260
@patch (
0 commit comments