@@ -321,12 +321,14 @@ public function testRenderAssets($groupOne, $groupTwo, $expectedResult)
321
321
->willReturn ($ groupAssetsOne );
322
322
$ groupMockOne ->expects ($ this ->any ())
323
323
->method ('getProperty ' )
324
- ->willReturnMap ([
325
- [GroupedCollection::PROPERTY_CAN_MERGE , true ],
326
- [GroupedCollection::PROPERTY_CONTENT_TYPE , $ groupOne ['type ' ]],
327
- ['attributes ' , $ groupOne ['attributes ' ]],
328
- ['ie_condition ' , $ groupOne ['condition ' ]],
329
- ]);
324
+ ->willReturnMap (
325
+ [
326
+ [GroupedCollection::PROPERTY_CAN_MERGE , true ],
327
+ [GroupedCollection::PROPERTY_CONTENT_TYPE , $ groupOne ['type ' ]],
328
+ ['attributes ' , $ groupOne ['attributes ' ]],
329
+ ['ie_condition ' , $ groupOne ['condition ' ]],
330
+ ]
331
+ );
330
332
331
333
$ assetMockTwo = $ this ->createMock (\Magento \Framework \View \Asset \AssetInterface::class);
332
334
$ assetMockTwo ->expects ($ this ->once ())
@@ -344,12 +346,14 @@ public function testRenderAssets($groupOne, $groupTwo, $expectedResult)
344
346
->willReturn ($ groupAssetsTwo );
345
347
$ groupMockTwo ->expects ($ this ->any ())
346
348
->method ('getProperty ' )
347
- ->willReturnMap ([
348
- [GroupedCollection::PROPERTY_CAN_MERGE , true ],
349
- [GroupedCollection::PROPERTY_CONTENT_TYPE , $ groupTwo ['type ' ]],
350
- ['attributes ' , $ groupTwo ['attributes ' ]],
351
- ['ie_condition ' , $ groupTwo ['condition ' ]],
352
- ]);
349
+ ->willReturnMap (
350
+ [
351
+ [GroupedCollection::PROPERTY_CAN_MERGE , true ],
352
+ [GroupedCollection::PROPERTY_CONTENT_TYPE , $ groupTwo ['type ' ]],
353
+ ['attributes ' , $ groupTwo ['attributes ' ]],
354
+ ['ie_condition ' , $ groupTwo ['condition ' ]],
355
+ ]
356
+ );
353
357
354
358
$ this ->pageConfigMock ->expects ($ this ->once ())
355
359
->method ('getAssetCollection ' )
0 commit comments