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:
authorsgiehl <stefan@piwik.org>2017-06-29 19:05:05 +0300
committersgiehl <stefan@piwik.org>2017-06-29 19:05:05 +0300
commit1f60ba9d74dbbd1d859e84ea165ffa047a62997b (patch)
treec05e028e1419c62a74b2148e6aa75ee2ba6f9673 /tests/PHPUnit
parent1bad9317e6eef0d4a26dedcb65dd9f538d6cc633 (diff)
fixes test failing on mysqli
Diffstat (limited to 'tests/PHPUnit')
-rw-r--r--tests/PHPUnit/System/RawLogDaoTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/System/RawLogDaoTest.php b/tests/PHPUnit/System/RawLogDaoTest.php
index 7046c53a34..7b75cb72e2 100644
--- a/tests/PHPUnit/System/RawLogDaoTest.php
+++ b/tests/PHPUnit/System/RawLogDaoTest.php
@@ -103,7 +103,7 @@ class RawLogDaoTest extends SystemTestCase
'log_link_visit_action' => '11',
'log_visit' => '1',
);
- $this->assertSame($expected, $this->dao->getMaxIdsInLogTables());
+ $this->assertEquals($expected, $this->dao->getMaxIdsInLogTables());
}
public function getVisitsInTimeFrameData()