From 7120a587cc57dad17be29c185fb813346095c193 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 21 Sep 2021 15:22:54 +0200 Subject: [PATCH 52/59] misc: fix unbalanced-tuple-unpacking pylint error (#56982) --- tests/test_all.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_all.py b/tests/test_all.py index 8569ad83..09d91210 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -660,7 +660,8 @@ class APITest(TestCase): self.assertIn('token', response2.data) self.assertEqual(len(mail.outbox), outbox_level + 1) - activation_mail1, activation_mail2 = mail.outbox + activation_mail1 = mail.outbox[0] + activation_mail2 = mail.outbox[1] # User side - user click on first email client = Client() -- 2.30.2