summaryrefslogtreecommitdiffstats
path: root/tests/Utils/CLITest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Utils/CLITest.php')
-rw-r--r--tests/Utils/CLITest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Utils/CLITest.php b/tests/Utils/CLITest.php
index 41d3965..435a2c8 100644
--- a/tests/Utils/CLITest.php
+++ b/tests/Utils/CLITest.php
@@ -1,14 +1,14 @@
<?php
-namespace SqlParser\Tests\Utils;
+namespace PhpMyAdmin\SqlParser\Tests\Utils;
-use SqlParser\Tests\TestCase;
+use PhpMyAdmin\SqlParser\Tests\TestCase;
class CLITest extends TestCase
{
private function getCLI($getopt)
{
- $cli = $this->getMockBuilder('SqlParser\Utils\CLI')->setMethods(array('getopt'))->getMock();
+ $cli = $this->getMockBuilder('PhpMyAdmin\SqlParser\Utils\CLI')->setMethods(array('getopt'))->getMock();
$cli->method('getopt')->willReturn($getopt);
return $cli;