Fix typos in test names (#2558)
This commit is contained in:
parent
59a737c285
commit
ac97b00457
|
|
@ -279,7 +279,7 @@ class TestFastAPIManualInstrumentation(TestBase):
|
||||||
if isinstance(point, NumberDataPoint):
|
if isinstance(point, NumberDataPoint):
|
||||||
self.assertEqual(point.value, 0)
|
self.assertEqual(point.value, 0)
|
||||||
|
|
||||||
def test_metric_uninstruemnt_app(self):
|
def test_metric_uninstrument_app(self):
|
||||||
self._client.get("/foobar")
|
self._client.get("/foobar")
|
||||||
self._instrumentor.uninstrument_app(self._app)
|
self._instrumentor.uninstrument_app(self._app)
|
||||||
self._client.get("/foobar")
|
self._client.get("/foobar")
|
||||||
|
|
|
||||||
|
|
@ -245,7 +245,7 @@ class TestAutomatic(InstrumentationTest, WsgiTestBase):
|
||||||
)
|
)
|
||||||
self.assertEqual(point.value, 0)
|
self.assertEqual(point.value, 0)
|
||||||
|
|
||||||
def test_metric_uninstruemnt(self):
|
def test_metric_uninstrument(self):
|
||||||
self.client.get("/hello/756")
|
self.client.get("/hello/756")
|
||||||
PyramidInstrumentor().uninstrument()
|
PyramidInstrumentor().uninstrument()
|
||||||
self.config = Configurator()
|
self.config = Configurator()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue