Skip to content

Commit

Permalink
fix: ensures allowed_to_send_email(...) tests pass (#9868)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdixon authored Dec 9, 2021
1 parent cf4cf6a commit dd5a411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/marketing/tests/test_marketing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_allowed_to_send_email(self):
"""Test the marketing util test_allowed_to_send_email method."""
assert allowed_to_send_email('emailSubscriber1@gitcoin.co', 'foo')
assert allowed_to_send_email('emailSubscriber2@gitcoin.co', 'foo')
assert allowed_to_send_email('emailSubscriber3@gitcoin.co', 'foo')
assert not allowed_to_send_email('emailSubscriber3@gitcoin.co', 'foo')

def test_get_of_get_or_save_email_subscriber(self):
"""Test the marketing util get_or_save_email_subscriber method."""
Expand Down

0 comments on commit dd5a411

Please sign in to comment.