Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7dca6a4

Browse files
gdixonnutrina
authored andcommittedDec 10, 2021
fix: ensures allowed_to_send_email(...) tests pass (#9868)
1 parent e6054a8 commit 7dca6a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎app/marketing/tests/test_marketing_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def test_allowed_to_send_email(self):
7979
"""Test the marketing util test_allowed_to_send_email method."""
8080
assert allowed_to_send_email('emailSubscriber1@gitcoin.co', 'foo')
8181
assert allowed_to_send_email('emailSubscriber2@gitcoin.co', 'foo')
82-
assert allowed_to_send_email('emailSubscriber3@gitcoin.co', 'foo')
82+
assert not allowed_to_send_email('emailSubscriber3@gitcoin.co', 'foo')
8383

8484
def test_get_of_get_or_save_email_subscriber(self):
8585
"""Test the marketing util get_or_save_email_subscriber method."""

0 commit comments

Comments
 (0)