summaryrefslogtreecommitdiffstats
path: root/tests/Components/IntoKeywordTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Components/IntoKeywordTest.php')
-rw-r--r--tests/Components/IntoKeywordTest.php4
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()