We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c01bed commit 8ff186aCopy full SHA for 8ff186a
Tests/Functional/EventSubscriber/CallbackSubscriberTest.php
@@ -238,6 +238,11 @@ public function testProcessCallbackRequestWhenSoftBounce(): void
238
239
$transportCallback = $this->getMockBuilder(TransportCallback::class)->disableOriginalConstructor()->getMock();
240
$coreParametersHelper = $this->getMockBuilder(CoreParametersHelper::class)->disableOriginalConstructor()->getMock();
241
+
242
+ $coreParametersHelper->method('get')
243
+ ->with('mailer_dsn')
244
+ ->willReturn('mautic+sparkpost+api://:some_api@some_host:25?region=us');
245
246
$subscriber = new CallbackSubscriber(
247
$transportCallback,
248
$coreParametersHelper
0 commit comments