We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0972b91 commit 6ce6a51Copy full SHA for 6ce6a51
instrumentation/opentelemetry-instrumentation-asyncpg/tests/test_asyncpg_wrapper.py
@@ -20,7 +20,9 @@ def test_duplicated_instrumentation_works(self):
20
first = AsyncPGInstrumentor()
21
first.instrument()
22
second = AsyncPGInstrumentor()
23
- self.assertIsNotNone(first._tracer)
+ second.instrument()
24
+ self.assertIsNotNone(first._tracer)
25
+ self.assertIsNotNone(second._tracer)
26
27
def test_duplicated_uninstrumentation(self):
28
AsyncPGInstrumentor().instrument()
0 commit comments