Skip to content

Commit ac97b00

Browse files
authored
Fix typos in test names (open-telemetry#2558)
1 parent 59a737c commit ac97b00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def test_basic_post_request_metric_success(self):
279279
if isinstance(point, NumberDataPoint):
280280
self.assertEqual(point.value, 0)
281281

282-
def test_metric_uninstruemnt_app(self):
282+
def test_metric_uninstrument_app(self):
283283
self._client.get("/foobar")
284284
self._instrumentor.uninstrument_app(self._app)
285285
self._client.get("/foobar")

instrumentation/opentelemetry-instrumentation-pyramid/tests/test_automatic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def test_basic_metric_success(self):
245245
)
246246
self.assertEqual(point.value, 0)
247247

248-
def test_metric_uninstruemnt(self):
248+
def test_metric_uninstrument(self):
249249
self.client.get("/hello/756")
250250
PyramidInstrumentor().uninstrument()
251251
self.config = Configurator()

0 commit comments

Comments
 (0)