Skip to content

Commit c3f4ab7

Browse files
committed
typo
1 parent 902a320 commit c3f4ab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrations/django/test_db_query_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ def test_set_db_data_fallback_to_connection_params(sentry_init):
642642
# Verify fallback was used
643643
mock_db.get_connection_params.assert_called_once()
644644
mock_logger.debug.assert_called_with(
645-
"Cached db connection config retrieval failed for %s. Trying db.get_connection_params().",
645+
"Cached db connection params retrieval failed for %s. Trying db.get_connection_params().",
646646
"uncached_db",
647647
)
648648

@@ -732,7 +732,7 @@ def test_set_db_data_fallback_to_direct_connection_psycopg2(sentry_init):
732732
# Verify logging
733733
assert mock_logger.debug.call_count == 2
734734
mock_logger.debug.assert_any_call(
735-
"Cached db connection config retrieval failed for %s. Trying db.get_connection_params().",
735+
"Cached db connection params retrieval failed for %s. Trying db.get_connection_params().",
736736
"direct_db",
737737
)
738738
mock_logger.debug.assert_any_call(

0 commit comments

Comments
 (0)