summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/ItemMapperTest.php
diff options
context:
space:
mode:
authorAurélien <dav.aurelien@gmail.com>2021-02-28 19:11:18 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 22:31:21 +0200
commit818736c2beb7ff6ff4d5c51128a8fe9b55c13155 (patch)
treee778a6f05cd73f6b4070db11597030b3a13fc4d0 /tests/Unit/Db/ItemMapperTest.php
parentfc8670f5bee8e66314497bf25808395406394daa (diff)
fix test readAll
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'tests/Unit/Db/ItemMapperTest.php')
-rw-r--r--tests/Unit/Db/ItemMapperTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Db/ItemMapperTest.php b/tests/Unit/Db/ItemMapperTest.php
index 1b43aa3ef..1715fd5a6 100644
--- a/tests/Unit/Db/ItemMapperTest.php
+++ b/tests/Unit/Db/ItemMapperTest.php
@@ -2163,7 +2163,7 @@ class ItemMapperTest extends MapperTestUtility
->withConsecutive(['id IN (:idList)'], ['unread != :unread'])
->will($this->returnSelf());
- $this->builder->expects($this->exactly(2))
+ $this->builder->expects($this->exactly(3))
->method('setParameter')
->withConsecutive(['unread', false], ['idList', [1, 2]])
->will($this->returnSelf());