diff --git a/tests/QueryBuilderTest.php b/tests/QueryBuilderTest.php index b58f1ad4..20c5e64b 100644 --- a/tests/QueryBuilderTest.php +++ b/tests/QueryBuilderTest.php @@ -142,9 +142,14 @@ public function testAddUnique(string $name, string $table, array|string $columns * @throws InvalidArgumentException * @throws NotSupportedException */ - public function testBatchInsert(string $table, array $columns, iterable $rows, string $expected): void - { - parent::testBatchInsert($table, $columns, $rows, $expected); + public function testBatchInsert( + string $table, + array $columns, + iterable $rows, + string $expected, + array $expectedParams = [], + ): void { + parent::testBatchInsert($table, $columns, $rows, $expected, $expectedParams); } /**