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 2c68a97 commit 7b78383Copy full SHA for 7b78383
instrumentation/opentelemetry-instrumentation-sqlalchemy/tests/test_sqlcommenter.py
@@ -70,7 +70,7 @@ def test_sqlcommenter_enabled_matches_db_statement_attribute(self):
70
commenter_options={"db_framework": False},
71
)
72
cnx = engine.connect()
73
- cnx.execute("SELECT 1;").fetchall()
+ cnx.execute(text("SELECT 1;")).fetchall()
74
query_log = self.caplog.records[-2].getMessage()
75
self.assertRegex(
76
query_log,
0 commit comments