We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f154d8 commit 47835aaCopy full SHA for 47835aa
instrumentation/opentelemetry-instrumentation-psycopg/tests/test_psycopg_integration.py
@@ -132,10 +132,10 @@ class PostgresqlIntegrationTestMixin:
132
def setUp(self):
133
super().setUp()
134
self.cursor_mock = mock.patch(
135
- "opentelemetry.instrumentation.psycopg.Cursor", MockCursor
+ "opentelemetry.instrumentation.psycopg.psycopg.Cursor", MockCursor
136
)
137
self.cursor_async_mock = mock.patch(
138
- "opentelemetry.instrumentation.psycopg.AsyncCursor",
+ "opentelemetry.instrumentation.psycopg.psycopg.AsyncCursor",
139
MockAsyncCursor,
140
141
self.connection_mock = mock.patch("psycopg.connect", MockConnection)
0 commit comments