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:
Diffstat (limited to 'plugins/SEO/tests/Integration/SEOTest.php')
-rw-r--r--plugins/SEO/tests/Integration/SEOTest.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/SEO/tests/Integration/SEOTest.php b/plugins/SEO/tests/Integration/SEOTest.php
index ded1caa444..b42791fa15 100644
--- a/plugins/SEO/tests/Integration/SEOTest.php
+++ b/plugins/SEO/tests/Integration/SEOTest.php
@@ -55,11 +55,10 @@ class SEOTest extends \PHPUnit_Framework_TestCase
$renderer->setSerialize(false);
$ranks = $renderer->render($dataTable);
foreach ($ranks as $rank) {
- $message = $rank['id'] . ' expected non-zero rank, got [' . $rank['rank'] . ']';
- if(empty($rank['rank'])) {
- $this->markTestSkipped("Skipped to avoid random build failure: " . $message);
+ if ($rank["id"] == "alexa") { // alexa is broken at the moment
+ continue;
}
- $this->assertNotEmpty($rank['rank'], $message);
+ $this->assertNotEmpty($rank['rank'], $rank['id'] . ' expected non-zero rank, got [' . $rank['rank'] . ']');
}
}