Skip to content

Commit 6ce6a51

Browse files
committed
Fix lint errors
1 parent 0972b91 commit 6ce6a51

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

instrumentation/opentelemetry-instrumentation-asyncpg/tests/test_asyncpg_wrapper.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ def test_duplicated_instrumentation_works(self):
2020
first = AsyncPGInstrumentor()
2121
first.instrument()
2222
second = AsyncPGInstrumentor()
23-
self.assertIsNotNone(first._tracer)
23+
second.instrument()
24+
self.assertIsNotNone(first._tracer)
25+
self.assertIsNotNone(second._tracer)
2426

2527
def test_duplicated_uninstrumentation(self):
2628
AsyncPGInstrumentor().instrument()

0 commit comments

Comments
 (0)