Skip to content

Commit 993066d

Browse files
committed
Fix PHPunit test framework class extensions
1 parent 9ff74d9 commit 993066d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/cases/parser/issue320Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
use PHPSQLParser\PHPSQLParser;
4242
use PHPSQLParser\PHPSQLCreator;
4343

44-
class issue320Test extends \PHPUnit_Framework_TestCase
44+
class issue320Test extends \PHPUnit\Framework\TestCase
4545
{
4646
public function test_no_warning_is_issued_when_help_table_is_used()
4747
{

tests/cases/parser/issue335Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
use PHPSQLParser\PHPSQLParser;
4141

42-
class issue335Test extends \PHPUnit_Framework_TestCase
42+
class issue335Test extends \PHPUnit\Framework\TestCase
4343
{
4444
/**
4545
* @test

tests/cases/parser/issue338Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use PHPSQLParser\PHPSQLParser;
66

7-
class issue338Test extends \PHPUnit_Framework_TestCase
7+
class issue338Test extends \PHPUnit\Framework\TestCase
88
{
99
public function testIssue338() {
1010
$sql = "SELECT id, date, type as type, libelle as libelle, TRUNCATE(debit, 2) as debit, ROUND(COALESCE(credit, 0) - COALESCE(debit, 0), 2) as solde FROM compte_cp";

0 commit comments

Comments
 (0)