From 15a13a5fc7380625c4b990cfb8c3564f4cebd45c Mon Sep 17 00:00:00 2001 From: Tigrov Date: Wed, 6 Dec 2023 13:46:38 +0700 Subject: [PATCH] Fix `QueryBuilderTest::testBatchInsert()` --- tests/QueryBuilderTest.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/QueryBuilderTest.php b/tests/QueryBuilderTest.php index f5adf0b5..a54377ea 100644 --- a/tests/QueryBuilderTest.php +++ b/tests/QueryBuilderTest.php @@ -181,9 +181,14 @@ public function testAlterColumn(): void * @throws NotSupportedException * @throws Throwable */ - 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); } /**