Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfox committed Mar 18, 2024
1 parent 4c3fc13 commit f6b261e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/QueryBuilderMixinTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ public static function positiveSqlStatements(): \Generator
{
yield 'flag is true' => [
true,
'select * from `users` where `id` = ?',
'select * from "users" where "id" = ?',
];
yield 'flag is false' => [
false,
'select * from `users`',
'select * from "users"',
];
}

Expand All @@ -57,11 +57,11 @@ public static function negativeSqlStatements(): \Generator
{
yield 'flag is true' => [
true,
'select * from `users`',
'select * from "users"',
];
yield 'flag is false' => [
false,
'select * from `users` where `id` = ?',
'select * from "users" where "id" = ?',
];
}
}

0 comments on commit f6b261e

Please sign in to comment.