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 b7bcc2b commit ccb225f
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 @@ -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);
}

/**
Expand Down

0 comments on commit ccb225f

Please sign in to comment.