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:
authordiosmosis <benaka@piwik.pro>2015-04-19 08:26:29 +0300
committerdiosmosis <benaka@piwik.pro>2015-05-10 08:40:32 +0300
commit9f6e04cdef6a835c1ce9535726ac784402e53372 (patch)
treea399f7d4d9dc848badbe58b607999734f8459085 /tests/PHPUnit/System/ArchiveCronTest.php
parent2db472c33ba7e131f65c83b8b4f4cebb1d7a8297 (diff)
Refactor CronArchive, remove need to specify URL (also did same to CliMulti), remove test skipping in ArchiveWebTest & ArchiveCronTest.
Diffstat (limited to 'tests/PHPUnit/System/ArchiveCronTest.php')
-rw-r--r--tests/PHPUnit/System/ArchiveCronTest.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/PHPUnit/System/ArchiveCronTest.php b/tests/PHPUnit/System/ArchiveCronTest.php
index 1f162b10df..0413b4b594 100644
--- a/tests/PHPUnit/System/ArchiveCronTest.php
+++ b/tests/PHPUnit/System/ArchiveCronTest.php
@@ -133,9 +133,7 @@ class ArchiveCronTest extends SystemTestCase
// run the command
exec($cmd, $output, $result);
if ($result !== 0 || stripos($result, "error")) {
- $message = 'This failed once after a lunar eclipse, and it has again randomly failed.';
- $message .= "\n\narchive cron failed: " . implode("\n", $output) . "\n\ncommand used: $cmd";
- $this->markTestSkipped($message);
+ $this->fail("archive cron failed: " . implode("\n", $output) . "\n\ncommand used: $cmd");
}
return $output;