Skip to content

Commit

Permalink
Replace (new Query($db))->select('*')
Browse files Browse the repository at this point in the history
to (new Query($db))->select([]) in test
  • Loading branch information
Tigrov committed Aug 17, 2023
1 parent 1ca0b91 commit 596d109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/SchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ public function testInsertDefaultValues()

$command->insert('negative_default_values', [])->execute();

$row = (new Query($db))->select('*')->from('negative_default_values')->one();
$row = (new Query($db))->select([])->from('negative_default_values')->one();

$this->assertSame([
'tinyint_col' => '-123',
Expand Down

0 comments on commit 596d109

Please sign in to comment.