From 34b32761ce37765f32033a283e32e13c214ac68b Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Thu, 1 Mar 2018 20:12:56 -0500 Subject: [PATCH] Fix tests... again --- .../Tickets/TicketCreatorTests/CreateTicketForCustomerTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/api/Tests/BusinessLogic/Tickets/TicketCreatorTests/CreateTicketForCustomerTest.php b/api/Tests/BusinessLogic/Tickets/TicketCreatorTests/CreateTicketForCustomerTest.php index e911ee4b..5269a7b4 100644 --- a/api/Tests/BusinessLogic/Tickets/TicketCreatorTests/CreateTicketForCustomerTest.php +++ b/api/Tests/BusinessLogic/Tickets/TicketCreatorTests/CreateTicketForCustomerTest.php @@ -116,6 +116,7 @@ class CreateTicketTest extends TestCase { $this->userGateway = $this->createMock(UserGateway::clazz()); $this->modsForHeskSettingsGateway = $this->createMock(ModsForHeskSettingsGateway::clazz()); $this->auditTrailGateway = $this->createMock(AuditTrailGateway::clazz()); + $this->customFieldsGateway = $this->createMock(CustomFieldsGateway::clazz()); $this->ticketCreator = new TicketCreator($this->newTicketValidator, $this->trackingIdGenerator, $this->autoassigner, $this->statusGateway, $this->ticketGateway, $this->verifiedEmailChecker,