From 390fa23bce0ee186c3723d22876e5cacce0a07a1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 23 May 2021 09:43:02 +0200 Subject: [PATCH 1/2] fix failing test for the installer wizard --- tests/src/Core/InstallerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Core/InstallerTest.php b/tests/src/Core/InstallerTest.php index 7404e216e..f94300fc1 100644 --- a/tests/src/Core/InstallerTest.php +++ b/tests/src/Core/InstallerTest.php @@ -103,7 +103,7 @@ class InstallerTest extends MockedTest $this->mockL10nT('File Information PHP module', 1); $this->mockL10nT('Error: File Information PHP module required but not installed.', 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) From 6ea52cfbf8ff0f2ea931592329e831efce17ddf5 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 23 May 2021 09:47:25 +0200 Subject: [PATCH 2/2] now... --- tests/src/Core/InstallerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/Core/InstallerTest.php b/tests/src/Core/InstallerTest.php index f94300fc1..8cd1a3fad 100644 --- a/tests/src/Core/InstallerTest.php +++ b/tests/src/Core/InstallerTest.php @@ -248,7 +248,7 @@ class InstallerTest extends MockedTest self::assertFalse($install->checkFunctions()); self::assertCheckExist(9, 'Program execution functions', - 'Error: Program execution functions required but not enabled.', + 'Error: Program execution functions (proc_open) required but not enabled.', false, true, $install->getChecks());