Skip to content

Commit

Permalink
fix failing gmail test
Browse files Browse the repository at this point in the history
  • Loading branch information
bmos committed Sep 17, 2024
1 parent cbafb3b commit af59262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_gmail/test_gmail.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ def test__validate_email_string(self):
{"email": "<[email protected]>", "expected": True},
{"email": "Sender [email protected]", "expected": False},
{"email": "Sender <sender2email.com>", "expected": False},
{"email": "Sender <sender@email,com>", "expected": True},
{"email": "Sender <sender+alias@email,com>", "expected": True},
{"email": "Sender <sender@email,com>", "expected": False},
{"email": "Sender <sender+alias@email,com>", "expected": False},
]

for e in emails:
Expand Down

0 comments on commit af59262

Please sign in to comment.