From 4d00dd3d6ec9a07bb613bdcf1197a7f215fc1bae Mon Sep 17 00:00:00 2001 From: Bruno Tikami Date: Sun, 7 Feb 2016 12:06:07 -0200 Subject: [PATCH] UPDATED: Renamed test to so the new upcoming test names (including CC, In-Reply etc) are easier to understand. --- helpdesk/tests/test_ticket_submission.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helpdesk/tests/test_ticket_submission.py b/helpdesk/tests/test_ticket_submission.py index e5f9933b..c91d12c1 100644 --- a/helpdesk/tests/test_ticket_submission.py +++ b/helpdesk/tests/test_ticket_submission.py @@ -24,13 +24,12 @@ class TicketBasicsTestCase(TestCase): self.client = Client() - def test_create_ticket_direct(self): + def test_create_ticket_from_email(self): email_count = len(mail.outbox) ticket_data = dict(queue=self.queue_public, **self.ticket_data) ticket = Ticket.objects.create(**ticket_data) self.assertEqual(ticket.ticket_for_url, "q1-%s" % ticket.id) self.assertEqual(email_count, len(mail.outbox)) - def test_create_ticket_public(self): email_count = len(mail.outbox)