Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2021-07-19 20:09:05 +0300
committerGitHub <noreply@github.com>2021-07-19 20:09:05 +0300
commit649886c4f7aba8951e2486fed6d1ac5f93cd5c9d (patch)
tree39d4162a9b6a24be78152388ce3c22cb51e1d9c0 /plugins/CoreUpdater
parent385b03640e609da4f8ab0ddbd89efebc5346198a (diff)
Temporarily let update test fail directly to avoid aborted tests on PHP7.4 and above (#17793)
Diffstat (limited to 'plugins/CoreUpdater')
-rw-r--r--plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php b/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
index e00697c1fb..a04003303b 100644
--- a/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
+++ b/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
@@ -102,6 +102,8 @@ class UpdateTest extends ConsoleCommandTestCase
public function test_UpdateCommand_ReturnsCorrectExitCode_WhenErrorOccurs()
{
+ $this->fail('This test currently lets PHPUnit fatal completely. Please investigate!');
+
// create a blob table, then drop it manually so update 2.10.0-b10 will fail
$tableName = ArchiveTableCreator::getBlobTable(Date::factory('2015-01-01'));
Db::exec("DROP TABLE $tableName");