@@ -309,7 +309,7 @@ public function testInstall(array $request, array $logMessages)
309
309
$ cacheManager ->expects ($ this ->any ())->method ('getAvailableTypes ' )->willReturn (['foo ' , 'bar ' ]);
310
310
$ cacheManager ->expects ($ this ->exactly (3 ))->method ('setEnabled ' )->willReturn (['foo ' , 'bar ' ]);
311
311
$ cacheManager ->expects ($ this ->exactly (3 ))->method ('clean ' );
312
- $ cacheManager ->expects ($ this ->exactly (3 ))->method ('getStatus ' )->willReturn ([]);
312
+ $ cacheManager ->expects ($ this ->exactly (3 ))->method ('getStatus ' )->willReturn ([' foo ' => 1 , ' bar ' => 1 ]);
313
313
$ appState = $ this ->getMockBuilder (\Magento \Framework \App \State::class)
314
314
->disableOriginalConstructor ()
315
315
->disableArgumentCloning ()
@@ -412,7 +412,7 @@ public function installDataProvider()
412
412
['Installing user configuration... ' ],
413
413
['Enabling caches: ' ],
414
414
['Current status: ' ],
415
- [print_r ([], true )],
415
+ [print_r ([' foo ' => 1 , ' bar ' => 1 ], true )],
416
416
['Installing data... ' ],
417
417
['Data install/update: ' ],
418
418
['Disabling caches: ' ],
@@ -463,7 +463,7 @@ public function installDataProvider()
463
463
['Installing user configuration... ' ],
464
464
['Enabling caches: ' ],
465
465
['Current status: ' ],
466
- [print_r ([], true )],
466
+ [print_r ([' foo ' => 1 , ' bar ' => 1 ], true )],
467
467
['Installing data... ' ],
468
468
['Data install/update: ' ],
469
469
['Disabling caches: ' ],
0 commit comments