diff options
Diffstat (limited to 'tests/Utils/CLITest.php')
-rw-r--r-- | tests/Utils/CLITest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Utils/CLITest.php b/tests/Utils/CLITest.php index ec69ad9..6d0ea4c 100644 --- a/tests/Utils/CLITest.php +++ b/tests/Utils/CLITest.php @@ -4,6 +4,7 @@ declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; use PhpMyAdmin\SqlParser\Tests\TestCase; +use PhpMyAdmin\SqlParser\Utils\CLI; class CLITest extends TestCase { @@ -22,7 +23,7 @@ class CLITest extends TestCase */ public function testGetopt() { - $cli = new \PhpMyAdmin\SqlParser\Utils\CLI(); + $cli = new CLI(); $this->assertEquals( $cli->getopt('', []), [] |