Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
Signed-off-by: pine3ree <[email protected]>
  • Loading branch information
pine3ree committed Apr 26, 2023
1 parent c4a5b81 commit 51b3952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Sql/Statement/InsertTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function testInsertRowsAddParam()
$row5 = ['price' => 555.55, 'stock' => 555];

$insert->rows([$row1, $row2, $row3]);
$insert->rows([$row4, $row5]); // this will reset previous 4 sets of values
$insert->rows([$row4, $row5]); // this will reset previous 3 sets of values
self::assertStringMatchesFormat(
"INSERT INTO `product`"
. " (`price`, `stock`)"
Expand All @@ -132,7 +132,7 @@ public function testInsertRowsAddParam()
);

$insert->rows([$row1, $row2, $row3]);
$insert->rows([$row4, $row5], true); // this will not reset previous 4 sets of values
$insert->rows([$row4, $row5], true); // this will not reset previous 3 sets of values
self::assertStringMatchesFormat(
"INSERT INTO `product`"
. " (`price`, `stock`)"
Expand Down

0 comments on commit 51b3952

Please sign in to comment.