summaryrefslogtreecommitdiffstats
path: root/tests/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestCase.php')
-rw-r--r--tests/TestCase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php
index 824beb4..1b97a9e 100644
--- a/tests/TestCase.php
+++ b/tests/TestCase.php
@@ -9,6 +9,7 @@ namespace PhpMyAdmin\SqlParser\Tests;
use PhpMyAdmin\SqlParser\Lexer;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\TokensList;
+use PHPUnit\Framework\TestCase as BaseTestCase;
$GLOBALS['lang'] = 'en';
@@ -19,7 +20,7 @@ $GLOBALS['lang'] = 'en';
*
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
-abstract class TestCase extends \PHPUnit_Framework_TestCase
+abstract class TestCase extends BaseTestCase
{
/**
* Gets the token list generated by lexing this query.