Skip to content

Commit

Permalink
🚨 Auto-format with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
TeoZosa committed Sep 12, 2021
1 parent 80a8746 commit ac3fe0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_sentry_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,11 @@ def test_sentry_ignore_logger(mocker, level):
)

m_capture_event.assert_called_once_with(
{"level": level, "message": event_data["event"], "extra": sentry_event_data,},
{
"level": level,
"message": event_data["event"],
"extra": sentry_event_data,
},
hint=None,
)
assert blacklisted_logger_event_dict.get("sentry") == "ignored"
Expand Down

0 comments on commit ac3fe0d

Please sign in to comment.