Projet

Général

Profil

0052-misc-fix-unbalanced-tuple-unpacking-pylint-error-569.patch

Valentin Deniaud, 21 septembre 2021 17:09

Télécharger (844 octets)

Voir les différences:

Subject: [PATCH 52/59] misc: fix unbalanced-tuple-unpacking pylint error
 (#56982)

 tests/test_all.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
tests/test_all.py
660 660
        self.assertIn('token', response2.data)
661 661
        self.assertEqual(len(mail.outbox), outbox_level + 1)
662 662

  
663
        activation_mail1, activation_mail2 = mail.outbox
663
        activation_mail1 = mail.outbox[0]
664
        activation_mail2 = mail.outbox[1]
664 665

  
665 666
        # User side - user click on first email
666 667
        client = Client()
667
-