Mailgun API key validation removed (#122)

* don't validate the format of the Mailgun API key
* remove test validating Mailgun API key
* remove rather than comment
* remove no-longer-relevant regex for Mailgun API key validation

refs #121
This commit is contained in:
Daniel Craigmile
2019-06-06 21:39:38 -05:00
committed by Chris Caron
parent 43a2c7b17c
commit 35d2d358e7
2 changed files with 0 additions and 15 deletions

View File

@ -787,10 +787,6 @@ TEST_URLS = (
('mailgun://user@host', {
'instance': TypeError,
}),
# Token specified but it's invalid
('mailgun://user@host/{}'.format('a' * 12), {
'instance': TypeError,
}),
# Token is valid, but no user name specified
('mailgun://host/{}-{}-{}'.format('a' * 32, 'b' * 8, 'c' * 8), {
'instance': TypeError,