diff options
author | Michal Čihař <michal@cihar.com> | 2016-09-13 10:36:43 +0200 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2016-09-13 10:36:43 +0200 |
commit | 5aa31e9b72db1ccbf7cbbd15e02757cdafc7b107 (patch) | |
tree | 5c52bbba684728c0249b2a48dc35005b0b9cb608 /tests/Components/IntoKeywordTest.php | |
parent | e78cf11ca60ff3d576627bfc9e3f8969523b2435 (diff) | |
parent | 3b29e76eccbf467004349157deb9121fac067f22 (diff) | |
download | sql-parser-5aa31e9b72db1ccbf7cbbd15e02757cdafc7b107.zip sql-parser-5aa31e9b72db1ccbf7cbbd15e02757cdafc7b107.tar.gz sql-parser-5aa31e9b72db1ccbf7cbbd15e02757cdafc7b107.tar.bz2 |
Merge remote-tracking branch 'origin/pull/70'
Diffstat (limited to 'tests/Components/IntoKeywordTest.php')
-rw-r--r-- | tests/Components/IntoKeywordTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Components/IntoKeywordTest.php b/tests/Components/IntoKeywordTest.php index dad7077..c18938a 100644 --- a/tests/Components/IntoKeywordTest.php +++ b/tests/Components/IntoKeywordTest.php @@ -19,8 +19,8 @@ class IntoKeywordTest extends TestCase public function testBuild() { - $component = IntoKeyword::parse(new Parser(), $this->getTokensList('tbl(col1, col2)')); - $this->assertEquals('tbl(col1, col2)', IntoKeyword::build($component)); + $component = IntoKeyword::parse(new Parser(), $this->getTokensList('tbl(`col1`, `col2`)')); + $this->assertEquals('tbl(`col1`, `col2`)', IntoKeyword::build($component)); } public function testBuildOutfile() |