Skip to content

Commit bd5b40b

Browse files
minor #21663 Updated PHPUnit namespaces (peterrehm)
This PR was squashed before being merged into the 2.8 branch (closes #21663). Discussion ---------- Updated PHPUnit namespaces | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Follow Up of #21564 Commits ------- 205ced4 Updated PHPUnit namespaces
2 parents c81cf18 + 3255888 commit bd5b40b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Tests/Extension/DependencyInjection/DependencyInjectionExtensionTest.php

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

1212
namespace Symfony\Component\Form\Tests\Extension\DependencyInjection;
1313

14+
use PHPUnit\Framework\TestCase;
1415
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
1516
use Symfony\Component\Form\Extension\DependencyInjection\DependencyInjectionExtension;
1617

17-
class DependencyInjectionExtensionTest extends \PHPUnit_Framework_TestCase
18+
class DependencyInjectionExtensionTest extends TestCase
1819
{
1920
public function testGetTypeExtensions()
2021
{

Tests/Util/StringUtilTest.php

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

1212
namespace Symfony\Component\Form\Tests\Util;
1313

14+
use PHPUnit\Framework\TestCase;
1415
use Symfony\Component\Form\Util\StringUtil;
1516

16-
class StringUtilTest extends \PHPUnit_Framework_TestCase
17+
class StringUtilTest extends TestCase
1718
{
1819
public function testTrim()
1920
{

0 commit comments

Comments
 (0)