Skip to content

Commit b832041

Browse files
committed
missing trailing , in search config test mock
1 parent 774d9cf commit b832041

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PostgresEngineTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function test_search_configuration()
107107

108108
$skip = 0;
109109
$limit = 5;
110-
$table = $this->setDbExpectations($db, $skip, $limit, "'".$searchConfig."'");
110+
$table = $this->setDbExpectations($db, $skip, $limit, "'".$searchConfig."',");
111111

112112
$table->shouldReceive('skip')->with($skip)->andReturnSelf()
113113
->shouldReceive('limit')->with($limit)->andReturnSelf()

0 commit comments

Comments
 (0)