File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
dev/tests/integration/testsuite/Magento/Paypal/Model/Express Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public function testCheckoutStartWithBillingAddress()
111
111
->disableOriginalConstructor ()
112
112
->getMock ();
113
113
114
- $ checkoutModel = $ this ->_objectManager ->create (
114
+ $ checkoutModel = $ this ->objectManager ->create (
115
115
Checkout::class,
116
116
[
117
117
'params ' => ['quote ' => $ quote , 'config ' => $ paypalConfig ],
@@ -418,7 +418,7 @@ public function testGuestReturnFromPaypal()
418
418
->setMethods (['importToPayment ' ])
419
419
->getMock ();
420
420
421
- $ checkoutModel = $ this ->_objectManager ->create (
421
+ $ checkoutModel = $ this ->objectManager ->create (
422
422
Checkout::class,
423
423
[
424
424
'params ' => ['quote ' => $ quote , 'config ' => $ paypalConfig ],
@@ -491,8 +491,8 @@ protected function _getExportedAddressFixture(array $addressData)
491
491
*/
492
492
protected function _getFixtureQuote ()
493
493
{
494
- /** @var \Magento\Quote\Model\ResourceModel\Quote\ Collection $quoteCollection */
495
- $ quoteCollection = $ this ->objectManager ->create (\ Magento \ Quote \ Model \ ResourceModel \ Quote \ Collection::class);
494
+ /** @var Collection $quoteCollection */
495
+ $ quoteCollection = $ this ->objectManager ->create (Collection::class);
496
496
497
497
return $ quoteCollection ->getLastItem ();
498
498
}
You can’t perform that action at this time.
0 commit comments