Skip to content

Commit 1a9eed7

Browse files
committed
update tests
1 parent bb38a65 commit 1a9eed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

instrumentation/opentelemetry-instrumentation-system-metrics/tests/test_system_metrics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_system_metrics_instrument(self):
118118
f"process.runtime.{self.implementation}.thread_count",
119119
f"process.runtime.{self.implementation}.context_switches",
120120
f"process.runtime.{self.implementation}.cpu.utilization",
121-
f"process.{self.implementation}.open_file_descriptor.count",
121+
"process.open_file_descriptor.count",
122122
]
123123

124124
if self.implementation == "pypy":
@@ -850,7 +850,7 @@ def test_open_file_descriptor_count(self, mock_process_num_fds):
850850

851851
expected = [_SystemMetricsResult({}, 3)]
852852
self._test_metrics(
853-
f"process.{self.implementation}.open_file_descriptor.count",
853+
"process.open_file_descriptor.count",
854854
expected,
855855
)
856856
mock_process_num_fds.assert_called()

0 commit comments

Comments
 (0)