Merge pull request #10297 from tobiasd/20210523-followuptest
fix failing test for the installer wizard
This commit is contained in:
commit
37898776bd
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class InstallerTest extends MockedTest
|
||||||
$this->mockL10nT('File Information PHP module', 1);
|
$this->mockL10nT('File Information PHP module', 1);
|
||||||
$this->mockL10nT('Error: File Information PHP module required but not installed.', 1);
|
$this->mockL10nT('Error: File Information PHP module required but not installed.', 1);
|
||||||
$this->mockL10nT('Program execution functions', 1);
|
$this->mockL10nT('Program execution functions', 1);
|
||||||
$this->mockL10nT('Error: Program execution functions required but not enabled.', 1);
|
$this->mockL10nT('Error: Program execution functions (proc_open) required but not enabled.', 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray)
|
private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray)
|
||||||
|
@ -248,7 +248,7 @@ class InstallerTest extends MockedTest
|
||||||
self::assertFalse($install->checkFunctions());
|
self::assertFalse($install->checkFunctions());
|
||||||
self::assertCheckExist(9,
|
self::assertCheckExist(9,
|
||||||
'Program execution functions',
|
'Program execution functions',
|
||||||
'Error: Program execution functions required but not enabled.',
|
'Error: Program execution functions (proc_open) required but not enabled.',
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
$install->getChecks());
|
$install->getChecks());
|
||||||
|
|
Loading…
Reference in a new issue