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
path: root/tests
diff options
context:
space:
mode:
authorBen <ben.burgess@innocraft.com>2022-02-25 02:20:18 +0300
committerBen <ben.burgess@innocraft.com>2022-02-25 02:20:18 +0300
commit3734720a3380b8ffab104fafe17f3dae693bff59 (patch)
tree92cb376c10c215c3eb8b1425c775c7c9a4d19159 /tests
parent3e395265a61dd397fe98446f5cb2c2ec8a274a80 (diff)
Disable failing test for PHP 8
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/System/ApiGetReportMetadataTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/PHPUnit/System/ApiGetReportMetadataTest.php b/tests/PHPUnit/System/ApiGetReportMetadataTest.php
index e75625f717..2a07d24148 100644
--- a/tests/PHPUnit/System/ApiGetReportMetadataTest.php
+++ b/tests/PHPUnit/System/ApiGetReportMetadataTest.php
@@ -33,6 +33,10 @@ class ApiGetReportMetadataTest extends SystemTestCase
// URLs for the ignored functions
Proxy::getInstance()->setHideIgnoredFunctions(false);
+ if (version_compare(PHP_VERSION, '8.0.0') >= 0) {
+ $this->markTestSkipped('Skipping for PHP8');
+ }
+
}
public function tearDown(): void