File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/integrations/django Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments