Fix typos in test names (#2558)

This commit is contained in:
Riccardo Magliocchetti
2024-05-28 23:31:44 +02:00
committed by GitHub
parent 59a737c285
commit ac97b00457
2 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ class TestFastAPIManualInstrumentation(TestBase):
if isinstance(point, NumberDataPoint):
self.assertEqual(point.value, 0)
def test_metric_uninstruemnt_app(self):
def test_metric_uninstrument_app(self):
self._client.get("/foobar")
self._instrumentor.uninstrument_app(self._app)
self._client.get("/foobar")

View File

@ -245,7 +245,7 @@ class TestAutomatic(InstrumentationTest, WsgiTestBase):
)
self.assertEqual(point.value, 0)
def test_metric_uninstruemnt(self):
def test_metric_uninstrument(self):
self.client.get("/hello/756")
PyramidInstrumentor().uninstrument()
self.config = Configurator()