summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/FolderMapperTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Db/FolderMapperTest.php')
-rw-r--r--tests/Unit/Db/FolderMapperTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Unit/Db/FolderMapperTest.php b/tests/Unit/Db/FolderMapperTest.php
index ab2fb3995..dd87b22b5 100644
--- a/tests/Unit/Db/FolderMapperTest.php
+++ b/tests/Unit/Db/FolderMapperTest.php
@@ -74,7 +74,7 @@ class FolderMapperTest extends MapperTestUtility
$this->builder->expects($this->once())
->method('setParameter')
- ->with(':user_id', 'jack')
+ ->with('user_id', 'jack')
->will($this->returnSelf());
$this->builder->expects($this->once())
@@ -124,7 +124,7 @@ class FolderMapperTest extends MapperTestUtility
$this->builder->expects($this->exactly(2))
->method('setParameter')
- ->withConsecutive([':user_id', 'jack'], [':id', 1])
+ ->withConsecutive(['user_id', 'jack'], ['id', 1])
->will($this->returnSelf());
$this->builder->expects($this->once())
@@ -173,7 +173,7 @@ class FolderMapperTest extends MapperTestUtility
$this->builder->expects($this->exactly(2))
->method('setParameter')
- ->withConsecutive([':user_id', 'jack'], [':id', 1])
+ ->withConsecutive(['user_id', 'jack'], ['id', 1])
->will($this->returnSelf());
$this->builder->expects($this->once())
@@ -222,7 +222,7 @@ class FolderMapperTest extends MapperTestUtility
$this->builder->expects($this->exactly(2))
->method('setParameter')
- ->withConsecutive([':user_id', 'jack'], [':id', 1])
+ ->withConsecutive(['user_id', 'jack'], ['id', 1])
->will($this->returnSelf());
$this->builder->expects($this->once())