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 e88f4e5 commit 5f8d6b1Copy full SHA for 5f8d6b1
libpythonpro/tests/test_spam/test_enviador_de_email.py
@@ -9,15 +9,15 @@ def test_criar_enviador_de_email():
9
10
11
@pytest.mark.parametrize(
12
- 'destinatario',
+ 'remetente',
13
['foo@bar.com.br', 'renzo@python.pro.br']
14
)
15
-def test_remetente(destinatario):
+def test_remetente(remetente):
16
enviador = Enviador()
17
resultado = enviador.enviar(
18
- destinatario,
+ remetente,
19
'luciano@python.pro.br',
20
'Cursos Python Pro',
21
'Primeira turma Guido Von Rossum aberta.'
22
23
- assert destinatario in resultado
+ assert remetente in resultado
0 commit comments