summaryrefslogtreecommitdiffstats
path: root/tests/Components/LimitTest.php
diff options
context:
space:
mode:
authorDeven Bansod <devenbansod.bits@gmail.com>2016-09-24 14:51:15 +0530
committerDeven Bansod <devenbansod.bits@gmail.com>2016-09-24 15:05:46 +0530
commit6dc3e0c54e262a9cd77cf443c277bde13cfa977c (patch)
treefb8acd7a67ba13e8b4852bc8f45b6178512c0f21 /tests/Components/LimitTest.php
parent8d3d69b04f8499c5a4e47a597dc6b0ec0222e959 (diff)
downloadsql-parser-6dc3e0c54e262a9cd77cf443c277bde13cfa977c.zip
sql-parser-6dc3e0c54e262a9cd77cf443c277bde13cfa977c.tar.gz
sql-parser-6dc3e0c54e262a9cd77cf443c277bde13cfa977c.tar.bz2
Added test cases for parsing DELETE statements
Signed-off-by: Deven Bansod <devenbansod.bits@gmail.com>
Diffstat (limited to 'tests/Components/LimitTest.php')
-rw-r--r--tests/Components/LimitTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Components/LimitTest.php b/tests/Components/LimitTest.php
index bc5a462..8a04bec 100644
--- a/tests/Components/LimitTest.php
+++ b/tests/Components/LimitTest.php
@@ -13,7 +13,7 @@ class LimitTest extends TestCase
public function testBuild()
{
$component = new Limit(1);
- $this->assertEquals(Limit::build($component), '1');
+ $this->assertEquals(Limit::build($component), '0, 1');
}
public function testBuildWithOffset()