From f71813f820bdb8f4a69539090c925a85de747fad Mon Sep 17 00:00:00 2001 From: medmunds Date: Mon, 6 Feb 2023 15:36:29 -0800 Subject: [PATCH] Fix Sendinblue integration test Fix change apparently introduced by black? (Unclear why this didn't cause integration test failure when run in PR branch.) --- tests/test_sendinblue_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sendinblue_integration.py b/tests/test_sendinblue_integration.py index ff643b6..402c6d9 100644 --- a/tests/test_sendinblue_integration.py +++ b/tests/test_sendinblue_integration.py @@ -97,7 +97,7 @@ class SendinBlueBackendIntegrationTests(AnymailTestMixin, SimpleTestCase): # There is a *new-style* template with this id in the Anymail test account: template_id=5, # Override template sender: - from_email=formataddr("Sender", self.from_email), + from_email=formataddr(("Sender", self.from_email)), # No batch send (so max one recipient suggested): to=["Recipient "], reply_to=["Do not reply "],