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>2019-10-03 22:24:48 +0300
committerGitHub <noreply@github.com>2019-10-03 22:24:48 +0300
commit688e1751327b6322486ff391b6abf8a86f2ae1fc (patch)
treefe51d7239030a8c7251532c7d6e33f6ea73e74ce /tests/PHPUnit/Integration
parent6b075bbb17aea5d119a13274617d905a1fc7a808 (diff)
Fixes some failing tests (#14948)
* Fix PasswordResetter tests * Adjust cronarchive test * updates submodules
Diffstat (limited to 'tests/PHPUnit/Integration')
-rw-r--r--tests/PHPUnit/Integration/CronArchiveTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/CronArchiveTest.php b/tests/PHPUnit/Integration/CronArchiveTest.php
index cf06c78e15..abef6f2258 100644
--- a/tests/PHPUnit/Integration/CronArchiveTest.php
+++ b/tests/PHPUnit/Integration/CronArchiveTest.php
@@ -107,7 +107,7 @@ class CronArchiveTest extends IntegrationTestCase
$archiver->run();
$this->assertContains('Will skip segments archiving for today unless they were created recently', $logger->output);
- $this->assertContains('Segment "actions>=1" was created recently and will therefore archive today', $logger->output);
+ $this->assertContains('Segment "actions>=1" was created or changed recently and will therefore archive today', $logger->output);
$this->assertNotContains('Segment "actions>=2" was created recently', $logger->output);
}