Skip to content

Commit

Permalink
Use PSR-1 for PHPUnit TestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
carusogabriel committed Nov 6, 2017
1 parent 8b163e5 commit d6e16e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use PhpMyAdmin\SqlParser\Lexer;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\TokensList;
use PHPUnit\Framework\TestCase as BaseTestCase;

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

Expand All @@ -19,7 +20,7 @@
*
* @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.
Expand Down

0 comments on commit d6e16e3

Please sign in to comment.