Skip to content

Commit f5094ce

Browse files
committed
MAGETWO-50845: [Github] Permissions Error When Running bin/magento setup:upgrade #3693
- Fix unit test after merge into PR_Branch
1 parent 9dd64b9 commit f5094ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,9 @@ public function testInstall()
317317
$this->logger->expects($this->at(41))->method('log')->with('Caches clearing:');
318318
$this->logger->expects($this->at(44))->method('log')->with('Disabling Maintenance Mode:');
319319
$this->logger->expects($this->at(46))->method('log')->with('Post installation file permissions check...');
320-
$this->logger->expects($this->at(48))->method('logSuccess')->with('Magento installation complete.');
321-
$this->logger->expects($this->at(50))->method('log')
320+
$this->logger->expects($this->at(48))->method('log')->with('Write installation date...');
321+
$this->logger->expects($this->at(50))->method('logSuccess')->with('Magento installation complete.');
322+
$this->logger->expects($this->at(52))->method('log')
322323
->with('Sample Data is installed with errors. See log file for details');
323324
$this->object->install($request);
324325
}

0 commit comments

Comments
 (0)