Skip to content

Commit

Permalink
Fix QueryBuilderTest::testBatchInsert()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Dec 6, 2023
1 parent fd45a0b commit 15a13a5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tests/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 15a13a5

Please sign in to comment.