From dfb7987ebb2677d30d96f825c8bc779449bffb16 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Thu, 20 Oct 2016 11:17:51 -0400 Subject: [PATCH] Remove emails from queue in test_get_email --- helpdesk/tests/test_get_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/tests/test_get_email.py b/helpdesk/tests/test_get_email.py index 3a488ff7..003d9a97 100644 --- a/helpdesk/tests/test_get_email.py +++ b/helpdesk/tests/test_get_email.py @@ -24,7 +24,7 @@ class GetEmailTestCase(TestCase): #fixtures = ['emailtemplate.json'] # may don't need this, not testing templates here def setUp(self): - self.queue_public = Queue.objects.create(title='Queue 1', slug='QQ', allow_public_submission=True, allow_email_submission=True, new_ticket_cc='new.public@example.com', updated_ticket_cc='update.public@example.com', email_box_type='local', email_box_local_dir='/var/lib/mail/helpdesk/') + self.queue_public = Queue.objects.create(title='Queue 1', slug='QQ', allow_public_submission=True, allow_email_submission=True, email_box_type='local', email_box_local_dir='/var/lib/mail/helpdesk/') # tests correct syntax for command line option def test_get_email_quiet_option(self):