We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4793012 commit 158f780Copy full SHA for 158f780
services/notifications/tests/unit/test_send_email_tasks.py
@@ -26,20 +26,20 @@ async def test_account_requested(
26
notifications_rabbitmq_rpc_client: RabbitMQRPCClient,
27
faker: Faker,
28
):
29
- email = faker.email()
+ user_email = faker.email()
30
31
await send_notification(
32
notifications_rabbitmq_rpc_client,
33
notification=Notification(
34
event=AccountRequestedEvent(
35
first_name=faker.first_name(),
36
last_name=faker.last_name(),
37
- email=email,
+ email=user_email,
38
),
39
channel=EmailChannel(
40
from_addr=EmailAddress(addr_spec=faker.email()),
41
to_addr=EmailAddress(
42
- addr_spec=email,
+ addr_spec=user_email,
43
44
45
0 commit comments