Skip to content

Commit 3237532

Browse files
committed
test
1 parent fab8a72 commit 3237532

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
([#242](https://github.com/microsoft/ApplicationInsights-Python/pull/242))
4141
- Update to azure-monitor-opentelemetry-exporter 1.0.0b12
4242
([#243](https://github.com/microsoft/ApplicationInsights-Python/pull/243))
43-
- Move symbols to protected
43+
- Move symbols to protected, add docstring for api
4444
([#244](https://github.com/microsoft/ApplicationInsights-Python/pull/244))
4545

4646
## [1.0.0b8](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b8) - 2022-09-26

azure-monitor-opentelemetry-distro/tests/test_distro.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class TestDistro(TestCase):
88
@patch(
9-
"azure.monitor.opentelemetry.distro.distro.AzureDiagnosticLogging.enable"
9+
"azure.monitor.opentelemetry.distro._distro.AzureDiagnosticLogging.enable"
1010
)
1111
# TODO: Enabled when duplciate logging issue is solved
1212
# @patch(
@@ -18,9 +18,9 @@ def test_configure(self, mock_diagnostics):
1818
distro.configure()
1919
self.assertEqual(mock_diagnostics.call_count, 2)
2020

21-
# TODO: Enabled when duplciate logging issue is solved
21+
# TODO: Enabled when duplicate logging issue is solved
2222
# @patch(
23-
# "azure.monitor.opentelemetry.distro.distro.AzureDiagnosticLogging.enable"
23+
# "azure.monitor.opentelemetry.distro._distro.AzureDiagnosticLogging.enable"
2424
# )
2525
# @patch(
2626
# "azure.monitor.opentelemetry.distro._diagnostic_logging._EXPORTER_DIAGNOSTICS_ENABLED",

0 commit comments

Comments
 (0)