summaryrefslogtreecommitdiffstats
path: root/tests/Components
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Components')
-rw-r--r--tests/Components/CreateDefinitionTest.php2
-rw-r--r--tests/Components/LimitTest.php1
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/Components/CreateDefinitionTest.php b/tests/Components/CreateDefinitionTest.php
index b14708c..3683e29 100644
--- a/tests/Components/CreateDefinitionTest.php
+++ b/tests/Components/CreateDefinitionTest.php
@@ -38,7 +38,7 @@ class CreateDefinitionTest extends TestCase
public function testParseErr2()
{
$parser = new Parser();
- $component = CreateDefinition::parse(
+ CreateDefinition::parse(
$parser,
$this->getTokensList(')')
);
diff --git a/tests/Components/LimitTest.php b/tests/Components/LimitTest.php
index 466a199..e78f5ff 100644
--- a/tests/Components/LimitTest.php
+++ b/tests/Components/LimitTest.php
@@ -3,7 +3,6 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
use PhpMyAdmin\SqlParser\Components\Limit;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class LimitTest extends TestCase