Skip to content

Commit 2a848ee

Browse files
committed
Updated PHPUnit namespaces
1 parent abdd7e2 commit 2a848ee

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Tests/ChoiceList/Loader/CallbackChoiceLoaderTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111

1212
namespace Symfony\Component\Form\Tests\ChoiceList\Loader;
1313

14+
use PHPUnit\Framework\TestCase;
1415
use Symfony\Component\Form\ChoiceList\LazyChoiceList;
1516
use Symfony\Component\Form\ChoiceList\Loader\CallbackChoiceLoader;
1617

1718
/**
1819
* @author Jules Pietri <[email protected]>
1920
*/
20-
class CallbackChoiceLoaderTest extends \PHPUnit_Framework_TestCase
21+
class CallbackChoiceLoaderTest extends TestCase
2122
{
2223
/**
2324
* @var \Symfony\Component\Form\ChoiceList\Loader\CallbackChoiceLoader

Tests/Extension/Core/DataTransformer/DateIntervalTestCase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111

1212
namespace Symfony\Component\Form\Tests\Extension\Core\DataTransformer;
1313

14-
abstract class DateIntervalTestCase extends \PHPUnit_Framework_TestCase
14+
use PHPUnit\Framework\TestCase;
15+
16+
abstract class DateIntervalTestCase extends TestCase
1517
{
1618
public static function assertDateIntervalEquals(\DateInterval $expected, \DateInterval $actual)
1719
{

0 commit comments

Comments
 (0)