PEP8 fixes for too many blank lines

This commit is contained in:
Garret Wassermann 2017-04-16 05:14:30 -04:00
parent e3a378625c
commit 3b22bb655a

View File

@ -148,7 +148,6 @@ class GetEmailParametricTemplate(object):
self.assertEqual(ticket2.title, test_email_subject)
self.assertEqual(ticket2.description, test_email_body)
def test_read_email_with_template_tag(self):
"""Tests reading plain text emails from a queue and creating tickets,
except this time the email body contains a Django template tag.
@ -222,7 +221,6 @@ class GetEmailParametricTemplate(object):
self.assertEqual(ticket2.title, test_email_subject)
self.assertEqual(ticket2.description, test_email_body)
def test_read_email_cc(self):
"""Tests reading plain text emails from a queue and creating tickets,
particularly to test appropriate handling of CC'd emails.
@ -308,7 +306,6 @@ class GetEmailParametricTemplate(object):
self.assertEqual(ticket2.title, test_email_subject)
self.assertEqual(ticket2.description, test_email_body)
def test_read_html_multipart_email(self):
"""Tests reading multipart MIME (HTML body and plain text alternative)
emails from a queue and creating tickets.