Skip to content

Commit

Permalink
Update tests according main PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Apr 6, 2024
1 parent 3bf7df5 commit aafe1c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/QueryBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -769,4 +769,10 @@ public function testJsonColumn()
$qb->insert('json_table', ['json_col' => new JsonExpression(['a' => 1, 'b' => 2])]),
);
}

/** @dataProvider \Yiisoft\Db\Sqlite\Tests\Provider\QueryBuilderProvider::selectScalar */
public function testSelectScalar(array|bool|float|int $columns, string $expected): void
{
parent::testSelectScalar($columns, $expected);
}
}

0 comments on commit aafe1c5

Please sign in to comment.