fix quote helper test
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
2a4d9f71af
commit
48df99f2e0
2 changed files with 2 additions and 2 deletions
|
@ -1200,7 +1200,7 @@ class QueryBuilderTest extends \Test\TestCase {
|
|||
public function dataGetColumnName() {
|
||||
return [
|
||||
['column', '', '`column`'],
|
||||
['column', 'a', 'a.`column`'],
|
||||
['column', 'a', '`a`.`column`'],
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ class QuoteHelperTest extends \Test\TestCase {
|
|||
public function dataQuoteColumnNames() {
|
||||
return [
|
||||
// Single case
|
||||
['d.column', 'd.`column`'],
|
||||
['d.column', '`d`.`column`'],
|
||||
['column', '`column`'],
|
||||
[new Literal('literal'), 'literal'],
|
||||
[new Literal(1), '1'],
|
||||
|
|
Loading…
Reference in a new issue