From 3b22bb655a91d95cc8a78c59f2fa41c5dd901b45 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Sun, 16 Apr 2017 05:14:30 -0400 Subject: [PATCH] PEP8 fixes for too many blank lines --- helpdesk/tests/test_get_email.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/helpdesk/tests/test_get_email.py b/helpdesk/tests/test_get_email.py index e248a0a2..c86e1f17 100644 --- a/helpdesk/tests/test_get_email.py +++ b/helpdesk/tests/test_get_email.py @@ -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.