Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstinalin committed Sep 25, 2024
1 parent d52b1cb commit b9b0ea2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/olympia/abuse/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2755,9 +2755,10 @@ def _test_notify_reviewer_decision(
log_entry=log_entry,
entity_helper=entity_helper,
)
assert 'An attachment was provided. To respond or view the file,' not in mail.outbox[0].body
assert 'An attachment was provided. To respond or view the file,' in mail.outbox[1].body

assert 'An attachment was provided.' not in mail.outbox[0].body
assert 'To respond or view the file,' not in mail.outbox[0].body
assert 'An attachment was provided.' in mail.outbox[1].body
assert 'To respond or view the file,' in mail.outbox[1].body
else:
assert len(mail.outbox) == 0

Expand Down

0 comments on commit b9b0ea2

Please sign in to comment.