File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
dev/tests/integration/testsuite/Magento/Quote/Model Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,6 @@ public function testSubmitWithDeletedItem(): void
197
197
$ this ->cartManagement ->placeOrder ($ quote ->getId ());
198
198
}
199
199
200
-
201
200
/**
202
201
* Tries to create order with product that has child items and one of them
203
202
* was deleted when item data check is disabled on quote load.
@@ -238,7 +237,11 @@ public function testSubmitWithItemOutOfStockWithDisabledInventoryCheck(): void
238
237
{
239
238
$ this ->makeProductOutOfStock ('simple ' );
240
239
$ quote = $ this ->getQuoteByReservedOrderId ->execute ('test01 ' );
241
- $ this ->expectExceptionObject (new LocalizedException (__ ('The shipping method is missing. Select the shipping method and try again. ' )));
240
+ $ this ->expectExceptionObject (
241
+ new LocalizedException (
242
+ __ ('The shipping method is missing. Select the shipping method and try again. ' )
243
+ )
244
+ );
242
245
$ this ->cartManagement ->placeOrder ($ quote ->getId ());
243
246
}
244
247
You can’t perform that action at this time.
0 commit comments