Skip to content

Commit 82fe464

Browse files
authored
Merge pull request #181 from gabriel-caruso/phpunit
Use PSR-1 for PHPUnit TestCase
2 parents 8b163e5 + d6e16e3 commit 82fe464

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/TestCase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
use PhpMyAdmin\SqlParser\Lexer;
1010
use PhpMyAdmin\SqlParser\Parser;
1111
use PhpMyAdmin\SqlParser\TokensList;
12+
use PHPUnit\Framework\TestCase as BaseTestCase;
1213

1314
$GLOBALS['lang'] = 'en';
1415

@@ -19,7 +20,7 @@
1920
*
2021
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2122
*/
22-
abstract class TestCase extends \PHPUnit_Framework_TestCase
23+
abstract class TestCase extends BaseTestCase
2324
{
2425
/**
2526
* Gets the token list generated by lexing this query.

0 commit comments

Comments
 (0)