Skip to content

Commit 93d27e1

Browse files
committed
Update tests according to the main PR
1 parent cd9ed3c commit 93d27e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/CommandTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ public function testAlterColumn(): void
7070
*/
7171
public function testBatchInsert(
7272
string $table,
73-
array $columns,
7473
iterable $values,
74+
array $columns,
7575
string $expected,
7676
array $expectedParams = [],
7777
int $insertedRow = 1
7878
): void {
79-
parent::testBatchInsert($table, $columns, $values, $expected, $expectedParams, $insertedRow);
79+
parent::testBatchInsert($table, $values, $columns, $expected, $expectedParams, $insertedRow);
8080
}
8181

8282
public function testDropCheck(): void

tests/QueryBuilderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ public function testAddUnique(string $name, string $table, array|string $columns
144144
*/
145145
public function testBatchInsert(
146146
string $table,
147-
array $columns,
148147
iterable $rows,
148+
array $columns,
149149
string $expected,
150150
array $expectedParams = [],
151151
): void {
152-
parent::testBatchInsert($table, $columns, $rows, $expected, $expectedParams);
152+
parent::testBatchInsert($table, $rows, $columns, $expected, $expectedParams);
153153
}
154154

155155
/**

0 commit comments

Comments
 (0)