Skip to content

Commit

Permalink
Appease ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
tammy-baylis-swi committed Oct 29, 2024
1 parent 0e396aa commit 769ded8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ def test_executemany_comment_matches_db_statement_attribute(self):
)

cursor_span_id = re.search(r"[a-zA-Z0-9_]{16}", cursor.query).group()
db_statement_span_id = re.search(r"[a-zA-Z0-9_]{16}", span.attributes[SpanAttributes.DB_STATEMENT]).group()
db_statement_span_id = re.search(
r"[a-zA-Z0-9_]{16}", span.attributes[SpanAttributes.DB_STATEMENT]
).group()
self.assertEqual(cursor_span_id, db_statement_span_id)

def test_compatible_build_version_psycopg_psycopg2_libpq(self):
Expand Down

0 comments on commit 769ded8

Please sign in to comment.