Skip to content

Commit 5d2bc66

Browse files
committed
Clean up leftover references to "Djrill"
1 parent 5d41708 commit 5d2bc66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/mock_requests_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
class RequestsBackendMockAPITestCase(SimpleTestCase, AnymailTestMixin):
17-
"""TestCase that uses Djrill EmailBackend with a mocked Mandrill API"""
17+
"""TestCase that mocks API calls through requests"""
1818

1919
DEFAULT_RAW_RESPONSE = b"""{"subclass": "should override"}"""
2020

tests/test_mandrill_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_invalid_to(self):
106106
if self.message.anymail_status.status == {'queued'}:
107107
self.skipTest("Mandrill queued the send -- can't complete this test")
108108
else:
109-
self.fail("Djrill did not raise AnymailRecipientsRefused for invalid recipient")
109+
self.fail("Anymail did not raise AnymailRecipientsRefused for invalid recipient")
110110

111111
def test_rejected_to(self):
112112
# Example of detecting when a recipient is on Mandrill's rejection blacklist
@@ -125,7 +125,7 @@ def test_rejected_to(self):
125125
if self.message.anymail_status.status == {'queued'}:
126126
self.skipTest("Mandrill queued the send -- can't complete this test")
127127
else:
128-
self.fail("Djrill did not raise AnymailRecipientsRefused for blacklist recipient")
128+
self.fail("Anymail did not raise AnymailRecipientsRefused for blacklist recipient")
129129

130130
@override_settings(MANDRILL_API_KEY="Hey, that's not an API key!")
131131
def test_invalid_api_key(self):

0 commit comments

Comments
 (0)