Skip to content

Commit f3f3462

Browse files
Format backend
1 parent 2344145 commit f3f3462

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

app/backend/src/tests/test_account.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,7 @@ def test_ChangeEmailV2_sends_proper_emails(db, fast_passwords, push_collector: P
594594
jobs = session.execute(select(BackgroundJob).where(BackgroundJob.job_type == "send_email")).scalars().all()
595595
assert len(jobs) == 2
596596
uq_str1 = b"Email address change initiated"
597-
uq_str2 = (
598-
b"You requested that your email be changed from"
599-
)
597+
uq_str2 = b"You requested that your email be changed from"
600598
assert (uq_str1 in jobs[0].payload and uq_str2 in jobs[1].payload) or (
601599
uq_str2 in jobs[0].payload and uq_str1 in jobs[1].payload
602600
)

0 commit comments

Comments
 (0)