We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf77523 commit 7d316ecCopy full SHA for 7d316ec
app/code/Magento/Fedex/Test/Unit/Plugin/Block/Tracking/PopupDeliveryDateTest.php
@@ -6,6 +6,7 @@
6
7
namespace Magento\Fedex\Test\Unit\Plugin\Block\Tracking;
8
9
+use Magento\Fedex\Model\Carrier;
10
use Magento\Fedex\Plugin\Block\Tracking\PopupDeliveryDate;
11
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
12
use Magento\Shipping\Block\Tracking\Popup;
@@ -44,7 +45,7 @@ public function testAfterFormatDeliveryDateTimeWithFedexCarrier()
44
45
->getMock();
46
$trackingStatusMock->expects($this::once())
47
->method('getCarrier')
- ->willReturn(\Magento\Fedex\Model\Carrier::CODE);
48
+ ->willReturn(Carrier::CODE);
49
50
/** @var Popup|MockObject $subjectMock */
51
$subjectMock = $this->getMockBuilder(Popup::class)
0 commit comments